Skip to content

Commit

Permalink
Merge pull request #21 from tbrlpld/release-prep-0.1.1
Browse files Browse the repository at this point in the history
Release prep 0.1.1
  • Loading branch information
tbrlpld committed Feb 10, 2024
2 parents e11b54c + 8d63634 commit b7763ec
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 10 deletions.
25 changes: 17 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,21 @@ 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).

## [Unreleased]
## [Unreleased] - YYYY-MM-DD

### Added

- ...

### Changed

- ...

### Removed

- ...

## [0.1.1] - 2024-02-10

### Added

Expand All @@ -16,13 +30,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Fixed tox configuration to actually run Django 3.2 in CI. Tox also uses the "testing" dependencies without the need to duplicate them in the `tox.ini`. ([#10](https://github.com/tbrlpld/laces/pull/10))
- Bumped GitHub Actions to latest versions. This removes a reliance on the now deprecated Node 16. ([#10](https://github.com/tbrlpld/laces/pull/10))
- Bumped GitHub Actions to the latest versions. This removes a reliance on the now deprecated Node 16. ([#10](https://github.com/tbrlpld/laces/pull/10))
- Extend documentation in README to simplify first examples and improve structure. ([#7](https://github.com/tbrlpld/laces/pull/7))

### Removed

- ...

## [0.1.0] - 2023-11-29

### Added
Expand All @@ -32,8 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- TEMPLATE - keep below to copy for new releases -->
<!--
## [x.y.z] - YYYY-MM-DD
## [Unreleased] - YYYY-MM-DD
### Added
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,10 @@ To create a release, you need a Git tag.
The tag can either be created on the command line and pushed or in the "create release" interface on GitHub.
The tag name should be the version number prefixed with a `v` (e.g. `v0.1.0`).

Before publishing a new release, make sure to update the changelog in `CHANGELOG.md` and the version number in `laces/__init__.py`.
Before publishing a new release, make sure to update

- the changelog in `CHANGELOG.md`, and
- the version number in `laces/__init__.py`.

To manually test publishing the package, you can use `flit`.
Be sure to configure the `testpypi` repository in your `~/.pypirc` file according to the Flit [documentation](https://flit.pypa.io/en/stable/upload.html#controlling-package-uploads).
Expand Down
2 changes: 1 addition & 1 deletion laces/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = (0, 1, 0)
VERSION = (0, 1, 1)
__version__ = ".".join(map(str, VERSION))

0 comments on commit b7763ec

Please sign in to comment.