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 2462608 commit 997c63b
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 236 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.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ features = ["extension-module"]
module-name = "sphinxcontrib.svgbob._svgbob"

[tool.cibuildwheel]
skip = ["*-musllinux_i686"]
skip = ["*-musllinux_i686", "pp*"]
test-command = "python -m unittest sphinxcontrib.svgbob.tests -v"
before-build = "pip install maturin"
build-verbosity = 1
Expand Down
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
2 changes: 2 additions & 0 deletions sphinxcontrib/svgbob/tests/test_sphinx.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
import shutil
import sys
import tempfile
import textwrap
import unittest
Expand Down Expand Up @@ -33,6 +34,7 @@ def setUpClass(cls):
def tearDownClass(cls):
shutil.rmtree(cls.docs_folder)

@unittest.skipIf(sys.version_info[:2] == (3, 7), "sphinx.builders.linkcheck may not be supported")
def build(self, builder="html"):
retcode = sphinx.cmd.build.main([
"-q",
Expand Down

0 comments on commit 997c63b

Please sign in to comment.