Skip to content

Commit

Permalink
Ready for v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matpompili committed Aug 5, 2022
1 parent 78fec6a commit cc826ee
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.0-beta.0
current_version = 0.4.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?(\.(?P<build>\d+))?
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,12 @@

## [Unreleased](https://github.com/matpompili/yamlpars/tree/main)

[Full Unreleased Changelog](https://github.com/matpompili/yamlpars/compare/v0.3.0...main)
[Full Unreleased Changelog](https://github.com/matpompili/yamlpars/compare/v0.4.0...main)

## [v0.4.0](https://github.com/matpompili/yamlpars/tree/v0.4.0) (2022-08-04)

- Setup documentation building with readthedocs.org
- Finished docstrings for all classes and functions
- Updated some requirements (see full changelog for details)

[Full v0.4.0 Changelog](https://github.com/matpompili/yamlpars/compare/v0.3.0...v0.4.0)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name="yamlpars",
version="0.4.0-beta.0",
version="0.4.0",
packages=["yamlpars"],
url="https://github.com/matpompili/yamlpars",
author="Matteo Pompili",
Expand All @@ -28,7 +28,7 @@
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
description="The yamlpars module is used to save configurations and parameters to YAML files, in a structured and easy-to use way.",
description="With yamlpars you can save configurations and parameters to YAML files, in a structured and easy-to use way.",
long_description=readme,
long_description_content_type="text/markdown",
install_requires=requirements,
Expand Down
2 changes: 1 addition & 1 deletion yamlpars/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from .update import update_yaml_file

__title__ = "yamlpars"
__version__ = "0.4.0-beta.0"
__version__ = "0.4.0"
__author__ = "Matteo Pompili"
__license__ = "MIT"
__copyright__ = "Copyright 2022 Matteo Pompili"
Expand Down

0 comments on commit cc826ee

Please sign in to comment.