Skip to content

Commit

Permalink
[0.1.0+build.1] C: Moved test_* files to /core/ subdirectories
Browse files Browse the repository at this point in the history
  • Loading branch information
Luzkan authored and GitVersioniser committed Apr 28, 2022
1 parent f1b943c commit d2aa276
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ _Note: New changelog entries are going to be created after the first horizontal

---

## [[0.1.0+build.1]] - 2022-04-28

### Changed
- Moved `test_*` files to `/core/` subdirectories



## [[0.1.0]] - 2022-04-28

### Added
Expand Down Expand Up @@ -120,3 +127,5 @@ _Note: New changelog entries are going to be created after the first horizontal

[0.1.0]: https://github.com/Luzkan/GitVersioniser/releases/tag/0.1.0

[0.1.0+build.1]: https://github.com/Luzkan/GitVersioniser/releases/tag/0.1.0+build.1

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img src="./docs/img/logo.png" style="height: 128px; width; 128px;"/>
<h2 align="center">GitVersioniser</h2>
<div>
<p style="font-style: italic;">Automatic Semantic Versioniser & Change Tracker [0.1.0]</p>
<p style="font-style: italic;">Automatic Semantic Versioniser & Change Tracker [0.1.0+build.1]</p>
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from gitversioniser.domain.versioniser.versioniser import Versioniser


__version__ = '0.1.0'
__version__ = '0.1.0+build.1'


def config() -> Config:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


if __name__ == "__main__":
setup(version='0.1.0')
setup(version='0.1.0+build.1')
2 changes: 1 addition & 1 deletion src/gitversioniser/config/arguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Arguments:

@staticmethod
def get_arguments() -> 'Arguments':
parser = argparse.ArgumentParser(description="GitVersioniser [0.1.0]")
parser = argparse.ArgumentParser(description="GitVersioniser [0.1.0+build.1]")
parser.add_argument(
"-d", "--target_directory", default='.',
help="(Setting) Path to repository which shall be versionised. (default: %(default)s)"
Expand Down
Empty file.
Empty file.
10 changes: 0 additions & 10 deletions tests/v0/routines/tagging/utils.py

This file was deleted.

1 change: 1 addition & 0 deletions tests/v0/test_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def test_default_arguments_routines(self):
self.assertEqual(self.config.routines.commit_message, 'prefix_tag')
self.assertEqual(self.config.routines.file_updater, 'versionise_files')
self.assertEqual(self.config.routines.commiting, 'push_main_amend')
self.assertEqual(self.config.routines.tagging, 'always')
self.assertEqual(self.config.routines.changelog, 'commit_pattern')

def test_default_configuration_credentials(self):
Expand Down

0 comments on commit d2aa276

Please sign in to comment.