Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Apr 14, 2021
1 parent 3fdd364 commit 6c3f39d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
shell: bash
run: |
${{ matrix.pyo3-python }} -m pip install -U -r /io/ci/requirements.txt
${{ matrix.pyo3-python }} -m pip wheel -vv /io -w /tmp
${{ matrix.pyo3-python }} -m pip wheel --no-deps -vv /io -w /tmp
for whl in /tmp/*.whl; do ${{ matrix.pyo3-python }} -m auditwheel repair $whl -w /io/dist; done
- name: Store built wheels
uses: actions/upload-artifact@v2
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


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


## [v0.1.0] - 2021-04-14
[v0.1.0]: https://github.com/althonos/sphinxcontrib-svgbob/compare/a46aa6e...v0.1.0

Initial release.
8 changes: 1 addition & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ For bug fixes or new features, please file an issue before submitting a
pull request. If the change isn't trivial, it may be best to wait for
feedback.

## Rule 0: Don't be an asshole.

[I didn't make that one up](https://en.wikipedia.org/wiki/The_No_Asshole_Rule),
so let's try to make the Internet a better place . This can start right here
in our day-to-day interactions while we build code.

## Setting up a local repository

You can just clone the repository without needing any extra setup to get a
Expand All @@ -36,7 +30,7 @@ This project targets Python 3.6 or later.

### Type hints

Python objects should be typed where applicable. For the Rust code,
Python objects should be typed where applicable. For the Rust code,
an external type stub must be maintained; if the `to_svg` arguments
are changed, or new arguments are added, make sure to update `_svgbob.pyi`
as well.
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
import subprocess
import sys
import urllib.request
from distutils.errors import DistutilsPlatformError

import setuptools
import setuptools_rust
from distutils.errors import DistutilsPlatformError
from distutils.log import INFO
from setuptools.command.sdist import sdist as _sdist
from setuptools_rust.build import build_rust as _build_rust
from setuptools_rust.utils import get_rust_version
Expand Down

0 comments on commit 6c3f39d

Please sign in to comment.