Skip to content

Commit

Permalink
🔖 Release 1.1.2 (#6)
Browse files Browse the repository at this point in the history
- Bumped `rustls-native-certs` to version 0.7.1
- Explicit support for Python 3.13
  • Loading branch information
Ousret authored Aug 17, 2024
1 parent a7c9e9f commit 71ff640
Show file tree
Hide file tree
Showing 9 changed files with 116 additions and 90 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,15 @@ jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-12, windows-latest ] # windows-latest
python_version: ['3.10', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10']
os: [ubuntu-latest, macos-12, windows-latest ]
python_version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
allow-prereleases: true
- name: Setup dependencies
run: pip install --upgrade pip pytest
- name: Build wheels (Unix, Linux)
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repos:
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.5.1
rev: v1.11.1
hooks:
- id: mypy
args: [--check-untyped-defs]
Expand Down
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,26 @@
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.2 (2024-08-17)

### Changed
- Bumped `rustls-native-certs` to version 0.7.1

### Added
- Explicit support for Python 3.13

## 1.1.1 (2024-04-29)

## Changed
### Changed
- Bumped `pyo3` to version 0.20.3

## Fixed
### Fixed
- Certifi fallback loading
- Exception if the underlying rust library could not access the OS store

## 1.1.0 (2024-02-20)

## Changed
### Changed
- Bumped `pyo3` to version 0.20.2
- Bumped `rustls-native-certs` to version 0.7.0
- Bumped `maturin` to version 1.4.0
Expand Down
Loading

0 comments on commit 71ff640

Please sign in to comment.