Skip to content

Commit daff108

Browse files
authored
Merge pull request #215 from bskinn/release-2.2b1
Merge for v2.2b1 release
2 parents 9c23522 + bca7cf3 commit daff108

File tree

9 files changed

+13
-9
lines changed

9 files changed

+13
-9
lines changed

.coveragerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
omit =
33
# Don't cover code in the env (just in case)
44
env/*
5-
5+
66
# Don't worry about covering vendored libraries
77
src/sphobjinv/_vendored/*
88

.github/workflows/ci_tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,3 @@ jobs:
9090
run: |
9191
pytest --cov=src --testall --nonloc
9292
tox -e sdist_install
93-

AUTHORS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ hadn't yet been documented (that happened in [2018](https://github.com/sphinx-do
1111
and a fair bit of searching didn't turn up anything promising.
1212

1313
Once I dug into the Sphinx code to figure out how to zlib-decompress the object data, it was relatively straightforward
14-
to put together the initial v1.0 of `sphobjinv`, which could only (de)compress objects.inv files to/from plaintext.
14+
to put together the initial v1.0 of `sphobjinv`, which could only (de)compress `objects.inv` files to/from plaintext.
1515
As I started to use it regularly in my own documentation work, it became clear that there would be significant advantages
1616
from also implementing functionality to assist with object searches, especially in large documentation sets.
1717
Also, it seemed likely that a robust API for creation/manipulation of inventory contents would be useful, in order to
18-
assist with things like scraping a non-Sphinx website to generate an objects.inv for cross-referencing in other docs.
18+
assist with things like scraping a non-Sphinx website to generate an `objects.inv` for cross-referencing in other docs.
1919
This led to the current object-oriented API of `sphobjinv` v2.x.
2020

2121
While there are [numerous](https://github.com/bskinn/sphobjinv/issues) possible enhancements to the project,

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project strives to adhere to
77
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).
88

99

10-
### [2.2b1] - *pending*
10+
### [2.2b1] - 2021-12-23
1111

1212
#### Removed
1313

requirements-ci.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
attrs>=17.4
1+
attrs>=19.2
22
certifi
33
codecov
44
coverage

requirements-dev.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
attrs>=17.4
1+
attrs>=19.2
2+
build
23
certifi
34
coverage
45
dictdiffer

requirements-rtd.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
attrs>=17.4
1+
attrs>=19.2
22
sphinx==4.3.1
33
sphinx-issues
44
sphinx-rtd-theme

setup.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ classifiers =
2929
Programming Language :: Python :: 3.9
3030
Programming Language :: Python :: 3.10
3131
Programming Language :: Python :: 3.11
32+
Topic :: Documentation
33+
Topic :: Documentation :: Sphinx
34+
Topic :: Software Development
35+
Topic :: Software Development :: Documentation
3236
Topic :: Utilities
3337
Development Status :: 5 - Production/Stable
3438
keywords = sphinx, sphinx-doc, inventory, manager, inspector

src/sphobjinv/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
2626
"""
2727

28-
__version__ = "2.2b1.dev0"
28+
__version__ = "2.2b1"

0 commit comments

Comments
 (0)