Skip to content

Commit

Permalink
bump: release 2.2.0 → 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jenstroeger committed Aug 26, 2022
1 parent 6edc49b commit 55b8d91
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 25 deletions.
63 changes: 40 additions & 23 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,58 @@
## v2.2.0 (2022-07-31)
## v2.3.0 (2022-08-26)

### Feat

- generate SLSA level 3 provenance for release artifacts (#259)
- persist requirements.txt as a build artifact (#284)
- always create a reproducible build with `make dist` (#272)

### Fix

- **ci**: allow PR Action to check commits across branches of forks (#287)
- disable noise when freezing the current venv (#273)
- enable CI on release bump commit (#269)

### Refactor

- **ci**: use commitizen tool for pull request action (#263)
- **ci**: remove write permissions from build.yaml (#291)

## v2.2.0 (2022-07-31)

### Feat

- generate SLSA level 3 provenance for release artifacts (#259)

### Fix

- create empty pip.conf file inside a new virtual environment (#264)

## v2.1.0 (2022-07-12)
### Refactor

### Fix
- **ci**: use commitizen tool for pull request action (#263)

- default goal for make should be to build the entire package (#257)
- remove shebang comment from Makefile which isn’t actually runable (#252)
## v2.1.0 (2022-07-12)

### Feat

- use Bash as the shell to execute Makefile recipes (#256)
- warn if generated builds are not reproducible (#253)
- move private file .upgraded into .venv/ folder (#248)

## v2.0.0 (2022-07-06)

### Fix

- flit doesn’t support MANIFEST.in, fix sdist accordingly (#244)
- default goal for make should be to build the entire package (#257)
- remove shebang comment from Makefile which isn’t actually runable (#252)

## v2.0.0 (2022-07-06)

### Feat

- replace the Makefile’s quick-check goal with check-code (#239)
- add pytest-env and pytest-custom-exit-code plugin support (#243)

### Fix

- flit doesn’t support MANIFEST.in, fix sdist accordingly (#244)

## v1.6.1 (2022-06-26)

### Fix
Expand All @@ -44,14 +61,14 @@

## v1.6.0 (2022-06-24)

### Fix

- **ci**: run all Actions except the Release job on the release commit (#230)

### Feat

- consolidate sdist and wheel into a single build target (#229)

### Fix

- **ci**: run all Actions except the Release job on the release commit (#230)

## v1.5.1 (2022-06-21)

### Fix
Expand All @@ -65,16 +82,16 @@

## v1.5.0 (2022-06-20)

### Feat

- move package specification, tool configs to pyproject.toml (#208)

### Fix

- **ci**: Release Action needs to use flit, too
- **ci**: use dedicated RELEASE_TOKEN for Release Action job (#219)
- **ci**: enable Release Action for private, protected branches (#209)

### Feat

- move package specification, tool configs to pyproject.toml (#208)

## v1.4.1 (2022-05-19)

### Fix
Expand Down Expand Up @@ -112,16 +129,16 @@

## v1.2.0 (2022-01-19)

### Fix

- change .yml to .yaml in documentation (#101)
- remove exclude option from mypy.ini (#98)

### Feat

- enable CodeQL security analyzer (#92)
- generate a command-line tool when installing this package (#89)

### Fix

- change .yml to .yaml in documentation (#101)
- remove exclude option from mypy.ini (#98)

## v1.1.2 (2021-12-09)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ update_changelog_on_bump = true
version_files = [
"src/package/__init__.py:__version__",
]
version = "2.2.0"
version = "2.3.0"


# https://github.com/pytest-dev/pytest-cov
Expand Down
2 changes: 1 addition & 1 deletion src/package/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# The version of this package. There's no comprehensive, official list of other
# magic constants, so we stick with this one only for now. See also this conversation:
# https://stackoverflow.com/questions/38344848/is-there-a-comprehensive-table-of-pythons-magic-constants
__version__ = "2.2.0"
__version__ = "2.3.0"

0 comments on commit 55b8d91

Please sign in to comment.