Skip to content

Commit 505d63a

Browse files
committed
Designate 0.3rc0 release
1 parent a205eec commit 505d63a

File tree

3 files changed

+58
-1
lines changed

3 files changed

+58
-1
lines changed

CHANGELOG.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,59 @@
11
# Changelog
22

3+
## yaml2ics 0.3rc0
4+
5+
### Enhancements
6+
7+
- Print concise error messages when invoking `yaml2ics` command ([#55](https://github.com/scientific-python/yaml2ics/pull/55)).
8+
- Default to UTC timezone ([#116](https://github.com/scientific-python/yaml2ics/pull/116)).
9+
10+
### Bug Fixes
11+
12+
- Unpin pytest ([#88](https://github.com/scientific-python/yaml2ics/pull/88)).
13+
- BUG: include timezone info in datetime_to_str converter ([#115](https://github.com/scientific-python/yaml2ics/pull/115)).
14+
- Correctly infer timezone from event begin time ([#125](https://github.com/scientific-python/yaml2ics/pull/125)).
15+
16+
### Maintenance
17+
18+
- Test on Python 3.12.0-beta.2 ([#56](https://github.com/scientific-python/yaml2ics/pull/56)).
19+
- Use label-check and attach-next-milestone-action ([#58](https://github.com/scientific-python/yaml2ics/pull/58)).
20+
- Use setuptools ([#59](https://github.com/scientific-python/yaml2ics/pull/59)).
21+
- Specify what goes in sdist ([#60](https://github.com/scientific-python/yaml2ics/pull/60)).
22+
- Use changelist ([#61](https://github.com/scientific-python/yaml2ics/pull/61)).
23+
- Use dependabot ([#62](https://github.com/scientific-python/yaml2ics/pull/62)).
24+
- Use trusted publisher ([#70](https://github.com/scientific-python/yaml2ics/pull/70)).
25+
- Pin ics-vtimezones to 2020.1 ([#78](https://github.com/scientific-python/yaml2ics/pull/78)).
26+
- Pin pytest ([#85](https://github.com/scientific-python/yaml2ics/pull/85)).
27+
- Use setup-python pip caching ([#87](https://github.com/scientific-python/yaml2ics/pull/87)).
28+
- Add changelist config ([#94](https://github.com/scientific-python/yaml2ics/pull/94)).
29+
- Update pre-commit repos ([#95](https://github.com/scientific-python/yaml2ics/pull/95)).
30+
- Update ruff config ([#96](https://github.com/scientific-python/yaml2ics/pull/96)).
31+
- Update GH actions ([#97](https://github.com/scientific-python/yaml2ics/pull/97)).
32+
- Add codespell pre-commit ([#98](https://github.com/scientific-python/yaml2ics/pull/98)).
33+
- Test on Python 3.13-dev ([#99](https://github.com/scientific-python/yaml2ics/pull/99)).
34+
- Fix cli and inclusion file tests ([#104](https://github.com/scientific-python/yaml2ics/pull/104)).
35+
- Update pytest config ([#100](https://github.com/scientific-python/yaml2ics/pull/100)).
36+
- Update pre-commit (12/2024) ([#107](https://github.com/scientific-python/yaml2ics/pull/107)).
37+
- Support for Python: added 3.13, 3.14, removed 3.8 ([#119](https://github.com/scientific-python/yaml2ics/pull/119)).
38+
39+
### Other
40+
41+
- CI: adding workflow_dispatch ([#84](https://github.com/scientific-python/yaml2ics/pull/84)).
42+
43+
### Contributors
44+
45+
3 authors added to this release (alphabetically):
46+
47+
- Brigitta Sipőcz ([@bsipocz](https://github.com/bsipocz))
48+
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
49+
- Stefan van der Walt ([@stefanv](https://github.com/stefanv))
50+
51+
3 reviewers added to this release (alphabetically):
52+
53+
- Brigitta Sipőcz ([@bsipocz](https://github.com/bsipocz))
54+
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
55+
- Stefan van der Walt ([@stefanv](https://github.com/stefanv))
56+
357
## [v0.2](https://github.com/scientific-python/yaml2ics/tree/v0.2)
458

559
[Full Changelog](https://github.com/scientific-python/yaml2ics/compare/v0.1...v0.2)

RELEASE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Example `version number`
2121

2222
- Autogenerate release notes
2323

24+
echo $ changelist ${ORG}/${REPO} v${PREVIOUS} main --version ${VERSION}
2425
changelist ${ORG}/${REPO} v${PREVIOUS} main --version ${VERSION}
2526

2627
- Put the output of the above command at the top of `CHANGELOG.md`

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "yaml2ics"
7-
version = "0.3rc0.dev0"
7+
version = "0.3rc0"
88
requires-python = ">=3.8"
99
authors = [{name = "Scientific Python Developers"}]
1010
readme = "README.md"
@@ -44,6 +44,8 @@ Home = "https://github.com/scientific-python/yaml2ics"
4444
Source = "https://github.com/scientific-python/yaml2ics"
4545

4646
[tool.changelist]
47+
intro_template = ""
48+
outro_template = ""
4749
ignored_user_logins = ["dependabot[bot]", "pre-commit-ci[bot]", "web-flow"]
4850

4951
[tool.ruff.lint]

0 commit comments

Comments
 (0)