Skip to content

Commit

Permalink
chore(release): 1.0.2
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release

Signed-off-by: semantic-release <semantic-release>
  • Loading branch information
semantic-release committed Mar 1, 2024
1 parent 46a8d9e commit 0524e92
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 3 deletions.
59 changes: 59 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,65 @@



## v1.0.2 (2024-03-01)

### Build

* build: use poetry v1.8.1 (#81)

Signed-off-by: Jan Kowalleck &lt;[email protected]&gt; ([`46a8d9e`](https://github.com/madpah/serializable/commit/46a8d9e629ac502864a99acaa9418d1c5cd32388))

### Chore

* chore(deps-dev): update coverage requirement from 7.4.1 to 7.4.3 (#79)

Updates the requirements on [coverage](https://github.com/nedbat/coveragepy) to permit the latest version.
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](https://github.com/nedbat/coveragepy/compare/7.4.1...7.4.3)

---
updated-dependencies:
- dependency-name: coverage
dependency-type: direct:development
...

Signed-off-by: dependabot[bot] &lt;[email protected]&gt;
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`fbf9b06`](https://github.com/madpah/serializable/commit/fbf9b0609227ebb31ee3f652358f3e18e5ef71b8))

* chore(deps): bump Gr1N/setup-poetry from 8 to 9 (#80)

Bumps [Gr1N/setup-poetry](https://github.com/gr1n/setup-poetry) from 8 to 9.
- [Release notes](https://github.com/gr1n/setup-poetry/releases)
- [Commits](https://github.com/gr1n/setup-poetry/compare/v8...v9)

---
updated-dependencies:
- dependency-name: Gr1N/setup-poetry
dependency-type: direct:production
update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] &lt;[email protected]&gt;
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`3264bc6`](https://github.com/madpah/serializable/commit/3264bc6cf7ff7473968d506ea85ebc04ced0ea79))

* chore(deps-dev): update flake8-quotes requirement from 3.3.2 to 3.4.0 (#77)

Updates the requirements on [flake8-quotes](https://github.com/zheller/flake8-quotes) to permit the latest version.
- [Commits](https://github.com/zheller/flake8-quotes/compare/3.3.2...3.4.0)

---
updated-dependencies:
- dependency-name: flake8-quotes
dependency-type: direct:development
...

Signed-off-by: dependabot[bot] &lt;[email protected]&gt;
Co-authored-by: dependabot[bot] &lt;49699333+dependabot[bot]@users.noreply.github.com&gt; ([`8a5460a`](https://github.com/madpah/serializable/commit/8a5460a453eaad49faf0245e435147bac727eb9e))

* chore: typo in SECURITY.md ([`06f557d`](https://github.com/madpah/serializable/commit/06f557db1200f019029ed5646274862f3be62643))


## v1.0.1 (2024-02-13)

### Chore
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

# The full version, including alpha/beta/rc tags
# !! version is managed by semantic_release
release = "1.0.1"
release = "1.0.2"

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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "py-serializable"
version = "1.0.1"
version = "1.0.2"
description = "Library for serializing and deserializing Python Objects to and from JSON and XML."
authors = ["Paul Horton <[email protected]>"]
maintainers = [
Expand Down
2 changes: 1 addition & 1 deletion serializable/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

# !! version is managed by semantic_release
# do not use typing here, or else `semantic_release` might have issues finding the variable
__version__ = '1.0.1'
__version__ = '1.0.2'

_logger = getLogger(__name__)
_logger.addHandler(NullHandler())
Expand Down

0 comments on commit 0524e92

Please sign in to comment.