Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version: 3.0.1 → 3.1.0 #684

Merged
merged 1 commit into from
Nov 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = False
current_version = 3.0.1
current_version = 3.1.0

[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.1.0] - 2024-11-16

### Added
- `.safety-policy.yml` file.

Expand Down Expand Up @@ -434,7 +436,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- First release.


[Unreleased]: https://github.com/fedejaure/cookiecutter-modern-pypackage/compare/v3.0.1...develop
[Unreleased]: https://github.com/fedejaure/cookiecutter-modern-pypackage/compare/v3.1.0...develop
[3.1.0]: https://github.com/fedejaure/cookiecutter-modern-pypackage/compare/v3.0.1...v3.1.0
[3.0.1]: https://github.com/fedejaure/cookiecutter-modern-pypackage/compare/v3.0.0...v3.0.1
[3.0.0]: https://github.com/fedejaure/cookiecutter-modern-pypackage/compare/v2.3.1...v3.0.0
[2.3.1]: https://github.com/fedejaure/cookiecutter-modern-pypackage/compare/v2.3.0...v2.3.1
Expand Down
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/fedejaure/cookiecutter-modern-pypackage/releases/tag/v3.0.1
description: The Software Heritage link for version 3.0.1.
https://github.com/fedejaure/cookiecutter-modern-pypackage/releases/tag/v3.1.0
description: The Software Heritage link for version 3.1.0.
repository-code: 'https://github.com/fedejaure/cookiecutter-modern-pypackage'
abstract: Cookiecutter template for a modern Python package.
keywords:
- cookiecutter
- template
- package
license: MIT
version: 3.0.1
version: 3.1.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ pip install -U cookiecutter
Run Cookiecutter using the latest release

```sh
cookiecutter gh:fedejaure/cookiecutter-modern-pypackage --checkout v3.0.1
cookiecutter gh:fedejaure/cookiecutter-modern-pypackage --checkout v3.1.0
```

### 3. Set up Your Project
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
# built documents.
#
# The short X.Y version.
version = "3.0.1"
version = "3.1.0"
# The full version, including alpha/beta/rc tags.
release = "3.0.1"
release = "3.1.0"

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Use cookiecutter, pointing it at the cookiecutter-pypackage repo:

.. code-block:: bash
$ cookiecutter gh:fedejaure/cookiecutter-modern-pypackage --checkout v3.0.1
$ cookiecutter gh:fedejaure/cookiecutter-modern-pypackage --checkout v3.1.0
You'll be asked to enter a bunch of values to set the package up.
If you don't know what to enter, stick with the defaults.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cookiecutter-modern-pypackage"
version = "3.0.1"
version = "3.1.0"
description = "Cookiecutter template for a modern Python package."
authors = ["Federico Jaureguialzo <[email protected]>"]
license = "MIT"
Expand Down