Skip to content

Commit

Permalink
Merge branch 'release-v3.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
fedejaure committed Feb 18, 2024
2 parents cc9cf51 + 14cf3d9 commit e3840af
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 12 deletions.
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.0
current_version = 3.0.1

[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
Expand Down
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# or a custom funding URL.

# More details are here: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository
github: [fedejaure]
github: fedejaure
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.1] - 2024-02-18
### Fixed
- Github funding file syntax.

## [3.0.0] - 2024-02-17
### Added
- Ruff `^0.2.1`.
Expand Down Expand Up @@ -397,7 +401,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.0...develop
[Unreleased]: https://github.com/fedejaure/cookiecutter-modern-pypackage/compare/v3.0.1...develop
[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
[2.3.0]: https://github.com/fedejaure/cookiecutter-modern-pypackage/compare/v2.2.1...v2.3.0
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.0
description: The Software Heritage link for version 3.0.0.
https://github.com/fedejaure/cookiecutter-modern-pypackage/releases/tag/v3.0.1
description: The Software Heritage link for version 3.0.1.
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.0
version: 3.0.1
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.0
cookiecutter gh:fedejaure/cookiecutter-modern-pypackage --checkout v3.0.1
```

### 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.0"
version = "3.0.1"
# The full version, including alpha/beta/rc tags.
release = "3.0.0"
release = "3.0.1"

# -- 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.0
$ cookiecutter gh:fedejaure/cookiecutter-modern-pypackage --checkout v3.0.1
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.0"
version = "3.0.1"
description = "Cookiecutter template for a modern Python package."
authors = ["Federico Jaureguialzo <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/.github/FUNDING.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# or a custom funding URL.

# More details are here: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository
github: [{{ cookiecutter.github_username }}]
github: {{ cookiecutter.github_username }}

0 comments on commit e3840af

Please sign in to comment.