Skip to content

Commit

Permalink
🔖 Release 1.1.0
Browse files Browse the repository at this point in the history
- Bumped `pyo3` to version 0.20.2
- Bumped `rustls-native-certs` to version 0.7.0
  • Loading branch information
Ousret committed Feb 9, 2024
1 parent 807f2a2 commit 96397d9
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 19 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to wassima will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## 1.1.0 (2024-02-09)

## Changed
- Bumped `pyo3` to version 0.20.2
- Bumped `rustls-native-certs` to version 0.7.0

## 1.0.3 (2023-11-11)

### Added
Expand Down
38 changes: 23 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wassima"
version = "1.0.3"
version = "1.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -9,8 +9,8 @@ name = "wassima"
crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.20.0", features = ["abi3-py37"] }
rustls-native-certs = "0.6.3"
pyo3 = { version = "0.20.2", features = ["abi3-py37"] }
rustls-native-certs = "0.7.0"

[package.metadata.maturin]
python-source = "wassima"
2 changes: 1 addition & 1 deletion wassima/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from __future__ import annotations

__version__ = "1.0.3"
__version__ = "1.1.0"
VERSION = __version__.split(".")

0 comments on commit 96397d9

Please sign in to comment.