Skip to content

Commit

Permalink
Prepare the next release.
Browse files Browse the repository at this point in the history
  • Loading branch information
nekitdev committed Jun 26, 2024
1 parent 9c7bca2 commit 7feb411
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xor-cipher-core"
version = "1.0.0"
version = "1.1.0"
authors = ["nekitdev", "RealistikDash"]
edition = "2021"
description = "Simple, reusable and optimized XOR ciphers in Python (core)."
Expand All @@ -21,4 +21,4 @@ version = "0.22.0"
features = ["extension-module", "generate-import-lib"]

[dependencies.xor-cipher]
version = "1.0.0"
version = "1.1.0"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Or by directly specifying it in the configuration like so:

```toml
[tool.poetry.dependencies]
xor-cipher-core = "^1.0.0"
xor-cipher-core = "^1.1.0"
```

Alternatively, you can add it directly from the source:
Expand Down
2 changes: 1 addition & 1 deletion changelogging.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[context]
name = "xor-cipher-core"
version = "1.0.0"
version = "1.1.0"
url = "https://github.com/xor-cipher/xor-cipher-core"

[formats]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "xor-cipher-core"
version = "1.0.0"
version = "1.1.0"
description = "Simple, reusable and optimized XOR ciphers in Python (core)."
readme = "README.md"
requires-python = ">= 3.8"
Expand Down
2 changes: 1 addition & 1 deletion xor_cipher_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__title__ = "xor_cipher_core"
__author__ = "nekitdev"
__license__ = "MIT"
__version__ = "1.0.0"
__version__ = "1.1.0"

from xor_cipher_core._xor_cipher_core import (
cyclic_xor,
Expand Down

0 comments on commit 7feb411

Please sign in to comment.