Skip to content

Commit

Permalink
version: bump to v2.0.0a6
Browse files Browse the repository at this point in the history
  • Loading branch information
demberto committed Nov 19, 2022
1 parent 0e669fa commit e19a07f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 2.0.0a6 - Unreleased
## [2.0.0a6] - 2022-11-19

### Added

Expand Down Expand Up @@ -588,6 +588,7 @@ Same as in 0.1.1
- `flpinfo` doesn't output correctly sometimes due to long strings.
- Extraneous data dumped sometimes by `InsertSlotEvent.Plugin`, why this is caused is not known.

[2.0.0a6]: https://github.com/demberto/PyFLP/compare/v2.0.0a5.post...v2.0.0a6
[2.0.0a5.post]: https://github.com/demberto/PyFLP/compare/v2.0.0a5...v2.0.0a5.post
[2.0.0a5]: https://github.com/demberto/PyFLP/compare/v2.0.0a4...v2.0.0a5
[2.0.0a4]: https://github.com/demberto/PyFLP/compare/v2.0.0a3...v2.0.0a4
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
project = "PyFLP"
author = "demberto"
copyright = f"2022, {author}"
release = "2.0.0a5.post" # DON'T TOUCH! Auto-updated by tbump
release = "2.0.0a6" # DON'T TOUCH! Auto-updated by tbump
extensions = [
"hoverxref.extension",
"m2r2", # Markdown to reStructuredText conversion
Expand Down
2 changes: 1 addition & 1 deletion pyflp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
from .project import VALID_PPQS, FileFormat, Project, ProjectID

__all__ = ["parse", "save"]
__version__ = "2.0.0a5.post"
__version__ = "2.0.0a6"

if sys.version_info < (3, 11): # https://github.com/Bobronium/fastenum/issues/2
import fastenum
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ version = { attr = "pyflp.__version__" }
github_url = "https://github.com/demberto/PyFLP/"

[tool.tbump.version]
current = "2.0.0a5.post"
current = "2.0.0a6"
regex = '''
(?P<major>\d+)
\.
Expand Down

0 comments on commit e19a07f

Please sign in to comment.