Skip to content

Commit 88c7515

Browse files
committed
Designate 0.9 release
1 parent d3a339e commit 88c7515

File tree

2 files changed

+59
-1
lines changed

2 files changed

+59
-1
lines changed

CHANGELOG.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,61 @@
1+
# spin 0.9
2+
3+
We're happy to announce the release of spin 0.9!
4+
5+
## Enhancements
6+
7+
- Warn user when trying to `spin run test.py` ([#148](https://github.com/scientific-python/spin/pull/148)).
8+
- Detect when a conflicting editable install exists ([#150](https://github.com/scientific-python/spin/pull/150)).
9+
- Add `gcov` flags for build ([#146](https://github.com/scientific-python/spin/pull/146)).
10+
- Add a pytest based testing framework and tests for build ([#160](https://github.com/scientific-python/spin/pull/160)).
11+
- Allow `spin --version` without configuration present ([#173](https://github.com/scientific-python/spin/pull/173)).
12+
- Allow setting default args for commands / callbacks ([#157](https://github.com/scientific-python/spin/pull/157)).
13+
- Add ``--gcov-report`` flag to ``spin test`` ([#159](https://github.com/scientific-python/spin/pull/159)).
14+
- Allow editable install ([#155](https://github.com/scientific-python/spin/pull/155)).
15+
16+
## Bug Fixes
17+
18+
- Fix doc hardcoded ([#179](https://github.com/scientific-python/spin/pull/179)).
19+
20+
## Documentation
21+
22+
- Document how to run test inside of LLDB ([#170](https://github.com/scientific-python/spin/pull/170)).
23+
24+
## Maintenance
25+
26+
- Bump pre-commit from 3.5.0 to 3.6.0 ([#145](https://github.com/scientific-python/spin/pull/145)).
27+
- Bump actions/setup-python from 4 to 5 ([#144](https://github.com/scientific-python/spin/pull/144)).
28+
- Update pre-commit repos ([#153](https://github.com/scientific-python/spin/pull/153)).
29+
- Use setup-python pip cache ([#164](https://github.com/scientific-python/spin/pull/164)).
30+
- pytest: use PYTHONPATH, not ., as first entry in sys.path ([#166](https://github.com/scientific-python/spin/pull/166)).
31+
- Bump changelist from 0.4 to 0.5 ([#169](https://github.com/scientific-python/spin/pull/169)).
32+
- Bump pre-commit from 3.6.0 to 3.6.2 ([#168](https://github.com/scientific-python/spin/pull/168)).
33+
- Bump pre-commit from 3.6.2 to 3.7.0 ([#175](https://github.com/scientific-python/spin/pull/175)).
34+
- Update pre-commit repos ([#180](https://github.com/scientific-python/spin/pull/180)).
35+
- Update year ([#181](https://github.com/scientific-python/spin/pull/181)).
36+
37+
## Contributors
38+
39+
5 authors added to this release (alphabetically):
40+
41+
- [@dependabot[bot]](https://github.com/apps/dependabot)
42+
- Ganesh Kathiresan ([@ganesh-k13](https://github.com/ganesh-k13))
43+
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
44+
- M Bussonnier ([@Carreau](https://github.com/Carreau))
45+
- Stefan van der Walt ([@stefanv](https://github.com/stefanv))
46+
47+
7 reviewers added to this release (alphabetically):
48+
49+
- Anton Akhmerov ([@akhmerov](https://github.com/akhmerov))
50+
- Ganesh Kathiresan ([@ganesh-k13](https://github.com/ganesh-k13))
51+
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
52+
- Lars Grüter ([@lagru](https://github.com/lagru))
53+
- M Bussonnier ([@Carreau](https://github.com/Carreau))
54+
- Ralf Gommers ([@rgommers](https://github.com/rgommers))
55+
- Stefan van der Walt ([@stefanv](https://github.com/stefanv))
56+
57+
_These lists are automatically generated, and may not be complete or may contain duplicates._
58+
159
# spin 0.8
260

361
We're happy to announce the release of spin 0.8!

spin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Read more at https://github.com/scientific-python/spin
77
"""
88

9-
__version__ = "0.9rc0.dev0"
9+
__version__ = "0.9"
1010

1111
from .cmds import util
1212

0 commit comments

Comments
 (0)