Skip to content

Commit

Permalink
8.0.0-rc.2
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
semantic-release committed Jun 28, 2023
1 parent 8c64cf9 commit 31ae4d1
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 20 deletions.
61 changes: 43 additions & 18 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,60 @@



## v8.0.0-rc.2 (2023-06-28)

### Ci

* ci: correct conditionals ([`eb8d53c`](https://github.com/python-semantic-release/python-semantic-release/commit/eb8d53cc86dd54041ed2b66868a8a7f91bf6bb0a))

* ci: fix conditionals in workflow and update documentation ([`b15bddd`](https://github.com/python-semantic-release/python-semantic-release/commit/b15bdddf845aae6788b19c386f67138e040ed649))

### Fix

* fix: only call Github Action output callback once defaults are set ([`8c64cf9`](https://github.com/python-semantic-release/python-semantic-release/commit/8c64cf9940d37f10278432411b32d81ae2ced343))

### Unknown

* Merge branch 'master' into 8.0.x ([`c6569a1`](https://github.com/python-semantic-release/python-semantic-release/commit/c6569a15e060f5a8053096f752d5ebb6a91eb784))


## v8.0.0-rc.1 (2023-06-17)


## v7.34.6 (2023-06-17)

### Fix

* fix: relax invoke dependency constraint ([`18ea200`](https://github.com/python-semantic-release/python-semantic-release/commit/18ea200633fd67e07f3d4121df5aa4c6dd29d154))


## v7.34.5 (2023-06-17)

### Feature

* feat: promote to rc ([`8b89ecd`](https://github.com/python-semantic-release/python-semantic-release/commit/8b89ecdcca8cf19035bfc8f186d812b9070c11a0))

### Fix

* fix: consider empty commits (#608) ([`6f2e890`](https://github.com/python-semantic-release/python-semantic-release/commit/6f2e8909636595d3cb5e858f42c63820cda45974))

* fix: pin Debian version in Dockerfile ([`d17ec69`](https://github.com/python-semantic-release/python-semantic-release/commit/d17ec69ccaa8236da88b6bb7d70601cfbae3919d))


## v7.34.4 (2023-06-15)

### Fix

* fix: docker build fails installing git (#605)

git was installed from bullseye-backports, but base image is referencing latest python:3.10
since bookworm was recently released, this now points at bookworm and installing the backport of git is actually trying to downgrade, resulting in this error:

> E: Packages were downgraded and -y was used without --allow-downgrades.

> ERROR: failed to solve: process "/bin/sh -c echo \"deb http://deb.debian.org/debian bullseye-backports main\" >> /etc/apt/sources.list; apt-get update; apt-get install -y git/bullseye-backports" did not complete successfully: exit code: 100 ([`9e3eb97`](https://github.com/python-semantic-release/python-semantic-release/commit/9e3eb979783bc39ca564c2967c6c77eecba682e6))


## v8.0.0-alpha.8 (2023-06-13)

### Ci
Expand Down Expand Up @@ -80,24 +123,6 @@ Co-authored-by: Bernard Cooke <bernard-cooke@hotmail.com> ([`0e85b94`](htt
* Merge branch 'master' into 8.0.x ([`49d9e27`](https://github.com/python-semantic-release/python-semantic-release/commit/49d9e27d6c65ea769bb1a8c786b25a78515bf6b8))


## v7.34.6 (2023-06-17)

### Fix

* Relax invoke dependency constraint ([`18ea200`](https://github.com/python-semantic-release/python-semantic-release/commit/18ea200633fd67e07f3d4121df5aa4c6dd29d154))

## v7.34.5 (2023-06-17)

### Fix

* Consider empty commits ([#608](https://github.com/python-semantic-release/python-semantic-release/issues/608)) ([`6f2e890`](https://github.com/python-semantic-release/python-semantic-release/commit/6f2e8909636595d3cb5e858f42c63820cda45974))

## v7.34.4 (2023-06-15)

### Fix

* Docker build fails installing git ([#605](https://github.com/python-semantic-release/python-semantic-release/issues/605)) ([`9e3eb97`](https://github.com/python-semantic-release/python-semantic-release/commit/9e3eb979783bc39ca564c2967c6c77eecba682e6))

## v7.34.3 (2023-06-01)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "python-semantic-release"
version = "8.0.0-rc.1"
version = "8.0.0-rc.2"
description = "Automatic Semantic Versioning for Python projects"
requires-python = ">=3.7"
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion semantic_release/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
tags_and_versions as tags_and_versions,
)

__version__ = "8.0.0-rc.1"
__version__ = "8.0.0-rc.2"


def setup_hook(argv: list[str]) -> None:
Expand Down

0 comments on commit 31ae4d1

Please sign in to comment.