Skip to content

Commit

Permalink
Bump Version to 3.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
derks committed Dec 18, 2021
1 parent ddfea30 commit f0b3643
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
# ChangeLog

## 3.0.5 - DEVELOPMENT (will be released as stable/3.0.6)
## 3.0.6 - Dec 18, 2021

Bugs:

- `[ext.argparse]` Parser (`self._parser`) not accessible inside `_pre_argument_parsing` when `stacked_type = 'embedded'`
- [Issue #569](https://github.com/datafolklabs/cement/issues/569)
- `[ext.configparser]` Overriding config options with environment variables doesn't work correctly with surrounding underscore characters
- [Issue #590](https://github.com/datafolklabs/cement/issues/590)
- `[utils.fs]` Fix bug where trailing slash was not removed in `fs.backup()` of a directory.
- [Issue #610](https://github.com/datafolklabs/cement/issues/610)
- `[cement.cli]` Generated README contains incorrect installation instructions.
- [Issue #588](https://github.com/datafolklabs/cement/issues/588)

Features:

Expand All @@ -22,7 +26,9 @@ Refactoring:

Misc:

- `[dev]` Update to Python 3.9 for default development / Docker version.
- `[dev]` Update to Python 3.10 for default development / Docker version.
- `[dev]` Remove Python 3.5/3.6 from Travis CI tests.
- `[dev]` Make official Docker images based on Python 3.10.


## 3.0.4 - May 17, 2019
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Copyright (c) 2009-2019 Data Folk Labs, LLC
Copyright (c) 2009 Data Folk Labs, LLC
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ Cement core features include (but are not limited to):
- 100% test coverage (`pytest`)
- 100% PEP8 compliant (`flake8`)
- Extensive API Reference (`sphinx`)
- Tested on Python 3.5+
- Does not support Python 2.x
- Tested on Python 3.7+

*Some optional extensions that are shipped with the mainline Cement sources do require external dependencies. It is the responsibility of the application developer to include these dependencies along with their application, as Cement explicitly does not include them.*

Expand Down
2 changes: 1 addition & 1 deletion cement/core/backend.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Cement core backend module."""

VERSION = (3, 0, 5, 'final', 0) # pragma: nocover
VERSION = (3, 0, 6, 'final', 0) # pragma: nocover
2 changes: 1 addition & 1 deletion tests/core/test_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ def test_version():
# ensure that we bump things properly on version changes
assert backend.VERSION[0] == 3
assert backend.VERSION[1] == 0
assert backend.VERSION[2] == 5
assert backend.VERSION[2] == 6
assert backend.VERSION[3] == 'final'
assert backend.VERSION[4] == 0

0 comments on commit f0b3643

Please sign in to comment.