Skip to content

Commit 66c652d

Browse files
committed
Version updated from 0.2.0 to 0.3.0
1 parent e8fddc9 commit 66c652d

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed

CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# Changelog
22

3+
## 0.3.0 (2023-04-17)
4+
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.2.0...0.3.0)
5+
6+
### Fixes
7+
8+
- Fixed bug in SCMInfo setup. [e8fddc9](https://github.com/callowayproject/bump-my-version/commit/e8fddc99ec5f4632f097790ca6b851d8854e09bd)
9+
10+
- Fixed missing xml coverage report. [696503f](https://github.com/callowayproject/bump-my-version/commit/696503fff800ea1f3ffb559108cde726296f2d98)
11+
12+
- Fixed assertion in failing test. [7afe58c](https://github.com/callowayproject/bump-my-version/commit/7afe58c4a15e0b48f223c3f2c80c48679e44aebc)
13+
14+
- Fixes issue when new version equals current version. [64b0de3](https://github.com/callowayproject/bump-my-version/commit/64b0de39828367c6c6f3e7103497256ce3f44f41)
15+
16+
- Now it reports they are the same and exits.
17+
- Fixes issue of duplicate tags. [c025650](https://github.com/callowayproject/bump-my-version/commit/c0256509cb39c3e78c09d35205007191fbf3732e)
18+
19+
- Now it checks if the tag exists and reports a warning
20+
- Fixed automation tooling. [19f13b7](https://github.com/callowayproject/bump-my-version/commit/19f13b7c0c388f15af45cf3fa04424a2946b4a04)
21+
22+
- changed name to bump-my-version in setup.cfg
23+
- added PAT in release pipeline to (hopefully) allow committing and tagging to master without issue.
24+
### New
25+
26+
- Added codecov to workflow. [a5009e0](https://github.com/callowayproject/bump-my-version/commit/a5009e04068787bb98363c3e6803f84a338ee798)
27+
28+
### Other
29+
30+
- Migrated setuptools metadata to pyproject.toml. [0bd54dc](https://github.com/callowayproject/bump-my-version/commit/0bd54dca1230021de266042014164fada25e0837)
31+
32+
### Updates
33+
34+
- Updated the readme. [1b1d910](https://github.com/callowayproject/bump-my-version/commit/1b1d910756be07638e6cb113ee05a6f5261f6393)
35+
36+
- Updated documentation. [6c3b4fe](https://github.com/callowayproject/bump-my-version/commit/6c3b4fe4995ea67b1cc13ca265d16506bde4dd02)
37+
38+
339
## 0.2.0 (2023-04-14)
440
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.1.0...0.2.0)
541

bumpversion/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Top-level package for bump-my-version."""
22

3-
__version__: str = "0.2.0"
3+
__version__: str = "0.3.0"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ order-by-type = true
170170
convention = "google"
171171

172172
[tool.bumpversion]
173-
current_version = "0.2.0"
173+
current_version = "0.3.0"
174174
commit = true
175175
commit_args = "--no-verify"
176176
tag = true

0 commit comments

Comments
 (0)