Skip to content

Commit afc4a56

Browse files
authored
Bump version: 1.3.0 → 1.3.1 (#41)
* Bump version: 1.3.0 → 1.3.1 * Update changelog to v1.3.1
1 parent 1785001 commit afc4a56

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.3.0
2+
current_version = 1.3.1
33
commit = True
44
tag = True
55

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77

88
## [Unreleased]
99

10+
## [1.3.1] - 2022-10-06
11+
1012
### Added
1113

1214
- A `py.typed` file to mark `codetiming` as typed as specified in [PEP 561](https://peps.python.org/pep-0561/#packaging-type-information) (by [@alkatar21](https://github.com/alkatar21) in [#38])
@@ -50,7 +52,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5052
Initial version of `codetiming`. Version 1.0.0 corresponds to the code in the tutorial [Python Timer Functions: Three Ways to Monitor Your Code](https://realpython.com/python-timer/).
5153

5254

53-
[Unreleased]: https://github.com/realpython/codetiming/compare/v1.3.0...HEAD
55+
[Unreleased]: https://github.com/realpython/codetiming/compare/v1.3.1...HEAD
56+
[1.3.0]: https://github.com/realpython/codetiming/compare/v1.3.0...v1.3.1
5457
[1.3.0]: https://github.com/realpython/codetiming/compare/v1.2.0...v1.3.0
5558
[1.2.0]: https://github.com/realpython/codetiming/compare/v1.1.0...v1.2.0
5659
[1.1.0]: https://github.com/realpython/codetiming/compare/v1.0.0...v1.1.0

codetiming/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ def stuff():
2525
from codetiming._timer import Timer, TimerError # noqa
2626

2727
# Versioning is handled by bump2version
28-
__version__ = "1.3.0"
28+
__version__ = "1.3.1"

0 commit comments

Comments
 (0)