Skip to content

Commit

Permalink
Release v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Jan 9, 2025
1 parent 24145b3 commit d282a01
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 235 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]
[Unreleased]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.3.1...HEAD


## [v0.3.1] - 2025-01-09
[v0.3.1]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.3.0...v0.3.1

### Changed
- Use `maturin` instead of `setuptools-rust` to handle the build process.
- Bumped `built` dependency from `0.5.1` to `0.7.5`.
- Bumped `pyo3` dependency from `0.17.1` to `0.23.3`.


## [v0.3.0] - 2024-08-14
[v0.3.0]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.2.1...v0.3.0

Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ the standard library. Running them requires the extension to be built
locally:

```console
$ python setup.py build_ext --inplace
$ python -m unittest discover -vv
$ python -m pip install --no-build-isolation -e . -v
$ python -m unittest sphinxcontrib.svgbob.tests -vv
```

## Coding guidelines

This project targets Python 3.6 or later.
This project targets Python 3.7 or later.

### Type hints

Expand Down
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Martin Larralde <[email protected]>
Copyright (c) 2021-2025 Martin Larralde <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
9 changes: 0 additions & 9 deletions MANIFEST.in

This file was deleted.

91 changes: 0 additions & 91 deletions setup.cfg

This file was deleted.

127 changes: 0 additions & 127 deletions setup.py

This file was deleted.

2 changes: 1 addition & 1 deletion sphinxcontrib/svgbob/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .transform import SvgbobToImageTransform


__version__ = "0.3.0"
__version__ = "0.3.1"


def setup(app: Sphinx) -> typing.Dict[str, typing.Any]:
Expand Down
2 changes: 1 addition & 1 deletion sphinxcontrib/svgbob/_svgbob/Cargo.lock

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

2 changes: 1 addition & 1 deletion sphinxcontrib/svgbob/_svgbob/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sphinxcontrib-svgbob"
version = "0.3.0"
version = "0.3.1"
authors = ["Martin Larralde <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down

0 comments on commit d282a01

Please sign in to comment.