Skip to content

Commit ddcaa93

Browse files
committed
Designate 0.12rc0 release
1 parent b07c5ba commit ddcaa93

File tree

2 files changed

+98
-1
lines changed

2 files changed

+98
-1
lines changed

CHANGELOG.md

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,100 @@
1+
# spin 0.12rc0
2+
3+
We're happy to announce the release of spin 0.12rc0!
4+
5+
## Enhancements
6+
7+
- Improve spin docs error message when no build is found ([#224](https://github.com/scientific-python/spin/pull/224)).
8+
- Make spin install verbose by default ([#225](https://github.com/scientific-python/spin/pull/225)).
9+
- Allow custom build directory ([#221](https://github.com/scientific-python/spin/pull/221)).
10+
- sdist: allow passing args to pyproject-build ([#229](https://github.com/scientific-python/spin/pull/229)).
11+
- Add introspection command ([#228](https://github.com/scientific-python/spin/pull/228)).
12+
- Guess project root and warn user ([#232](https://github.com/scientific-python/spin/pull/232)).
13+
14+
## Bug Fixes
15+
16+
- Re-activate jobs flag, so nr of CPUs can be tuned back ([#222](https://github.com/scientific-python/spin/pull/222)).
17+
18+
## Documentation
19+
20+
- Add example of how to test individual tests via nox ([#223](https://github.com/scientific-python/spin/pull/223)).
21+
- Running test inside of LLDB doesn't seem to work as expected; undocument ([#233](https://github.com/scientific-python/spin/pull/233)).
22+
23+
## Maintenance
24+
25+
- Add changelist config ([#216](https://github.com/scientific-python/spin/pull/216)).
26+
- Update ruff config ([#217](https://github.com/scientific-python/spin/pull/217)).
27+
- Update GH actions ([#218](https://github.com/scientific-python/spin/pull/218)).
28+
- Add codespell pre-commit ([#219](https://github.com/scientific-python/spin/pull/219)).
29+
- Update pytest config ([#220](https://github.com/scientific-python/spin/pull/220)).
30+
- Bump pre-commit from 3.7.1 to 3.8.0 in the actions group ([#227](https://github.com/scientific-python/spin/pull/227)).
31+
32+
## Contributors
33+
34+
3 authors added to this release (alphabetically):
35+
36+
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
37+
- Loïc Estève ([@lesteve](https://github.com/lesteve))
38+
- Stefan van der Walt ([@stefanv](https://github.com/stefanv))
39+
40+
4 reviewers added to this release (alphabetically):
41+
42+
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
43+
- Lars Grüter ([@lagru](https://github.com/lagru))
44+
- Loïc Estève ([@lesteve](https://github.com/lesteve))
45+
- Stefan van der Walt ([@stefanv](https://github.com/stefanv))
46+
47+
_These lists are automatically generated, and may not be complete or may contain duplicates._
48+
49+
# spin 0.12
50+
51+
We're happy to announce the release of spin 0.12!
52+
53+
## Enhancements
54+
55+
- Improve spin docs error message when no build is found ([#224](https://github.com/scientific-python/spin/pull/224)).
56+
- Make spin install verbose by default ([#225](https://github.com/scientific-python/spin/pull/225)).
57+
- Allow custom build directory ([#221](https://github.com/scientific-python/spin/pull/221)).
58+
- sdist: allow passing args to pyproject-build ([#229](https://github.com/scientific-python/spin/pull/229)).
59+
- Add introspection command ([#228](https://github.com/scientific-python/spin/pull/228)).
60+
- Guess project root and warn user ([#232](https://github.com/scientific-python/spin/pull/232)).
61+
62+
## Bug Fixes
63+
64+
- Re-activate jobs flag, so nr of CPUs can be tuned back ([#222](https://github.com/scientific-python/spin/pull/222)).
65+
66+
## Documentation
67+
68+
- Add example of how to test individual tests via nox ([#223](https://github.com/scientific-python/spin/pull/223)).
69+
- Running test inside of LLDB doesn't seem to work as expected; undocument ([#233](https://github.com/scientific-python/spin/pull/233)).
70+
71+
## Maintenance
72+
73+
- Add changelist config ([#216](https://github.com/scientific-python/spin/pull/216)).
74+
- Update ruff config ([#217](https://github.com/scientific-python/spin/pull/217)).
75+
- Update GH actions ([#218](https://github.com/scientific-python/spin/pull/218)).
76+
- Add codespell pre-commit ([#219](https://github.com/scientific-python/spin/pull/219)).
77+
- Update pytest config ([#220](https://github.com/scientific-python/spin/pull/220)).
78+
- Bump pre-commit from 3.7.1 to 3.8.0 in the actions group ([#227](https://github.com/scientific-python/spin/pull/227)).
79+
80+
## Contributors
81+
82+
3 authors added to this release (alphabetically):
83+
84+
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
85+
- Loïc Estève ([@lesteve](https://github.com/lesteve))
86+
- Stefan van der Walt ([@stefanv](https://github.com/stefanv))
87+
88+
4 reviewers added to this release (alphabetically):
89+
90+
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
91+
- Lars Grüter ([@lagru](https://github.com/lagru))
92+
- Loïc Estève ([@lesteve](https://github.com/lesteve))
93+
- Stefan van der Walt ([@stefanv](https://github.com/stefanv))
94+
95+
_These lists are automatically generated, and may not be complete or may contain
96+
duplicates._
97+
198
# spin 0.11
299

3100
We're happy to announce the release of spin 0.11!

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.12rc0.dev0"
9+
__version__ = "0.12rc0"
1010

1111
from .cmds import util
1212

0 commit comments

Comments
 (0)