Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Raquel Serial committed Aug 4, 2024
1 parent d674097 commit eaf0a13
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 0.1.0
current_version = 0.1.1

[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
Expand All @@ -14,7 +14,7 @@ replace = __version__ = "{new_version}"
[bumpversion:file(title):CHANGELOG.md]
search = {#}{#} [Unreleased]
replace = {#}{#} [Unreleased]

{#}{#} [{new_version}] - {now:%Y-%m-%d}

[bumpversion:file(links):CHANGELOG.md]
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0


## [Unreleased]

## [0.1.1] - 2024-08-04
### Changed
- Upgrade dev dependencies.

## [0.1.0] - 2024-08-03
### Added
- First release on PyPI.

[Unreleased]: https://github.com/rserial/flintpy/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/rserial/flintpy/compare/v0.1.1...HEAD
[0.1.1]: https://github.com/rserial/flintpy/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/rserial/flintpy/compare/releases/tag/v0.1.0
6 changes: 3 additions & 3 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ authors:
identifiers:
- type: url
value: >-
https://github.com/rserial/flintpy/releases/tag/v0.1.0
description: The Software Heritage link for version 0.1.0.
https://github.com/rserial/flintpy/releases/tag/v0.1.1
description: The Software Heritage link for version 0.1.1.
repository-code: 'https://github.com/rserial/flintpy'
abstract: Python implementation of FLINT algorithm for NMR relaxation data.
keywords:
- flintpy
- flintpy-nmr
- nmr
license: MIT
version: 0.1.0
version: 0.1.1
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "flintpy-nmr"
packages = [{include = "*", from="src"}]
version = "0.1.0"
version = "0.1.1"
description = "Python implementation of FLINT algorithm for NMR relaxation data."
authors = ["Raquel Serial <raquelserial@gmail.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/flintpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """Raquel Serial"""
__email__ = "raquelserial@gmail.com"
__version__ = "0.1.0"
__version__ = "0.1.1"

0 comments on commit eaf0a13

Please sign in to comment.