Skip to content

Commit ea5871c

Browse files
Merge pull request #49 from fleetingbytes/develop
Develop
2 parents b932f04 + 26a873b commit ea5871c

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
<!-- towncrier release notes start -->
44

5+
## 0.9.5 (2025-07-08)
6+
7+
8+
### Documentation
9+
10+
- add MIT header to LICENSE.txt [#46](https://github.com/fleetingbytes/rtfparse/issues/46)
11+
- use MIT SPDX identifier in pyproject.toml, use correct name in LICENSE.txt, update year in LICENSE.txt, rename LICENSE.txt to LICENSE [#47](https://github.com/fleetingbytes/rtfparse/issues/47)
12+
513
## 0.9.4 (2024-11-10)
614

715

LICENSE.txt renamed to LICENSE

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
Copyright (c) 2023 Sven Siegmud
1+
MIT License
2+
3+
Copyright (c) 2025 Sven Siegmund
24

35
Permission is hereby granted, free of charge, to any person obtaining a copy
46
of this software and associated documentation files (the "Software"), to deal

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ build-backend = "hatchling.build"
99
name = "rtfparse"
1010
description = "Tool to parse Microsoft Rich Text Format (RTF)"
1111
readme = "README.md"
12+
license = "MIT"
1213
requires-python = ">=3.10"
1314
authors = [
1415
{ name = "Sven Siegmund", email = "[email protected]" },
@@ -41,9 +42,6 @@ dependencies = [
4142
]
4243
dynamic = ["version"]
4344

44-
[project.license]
45-
file = "LICENSE.txt"
46-
4745
[project.urls]
4846
Documentation = "https://github.com/fleetingbytes/rtfparse#readme"
4947
Issues = "https://github.com/fleetingbytes/rtfparse/issues"

src/rtfparse/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env python
22

33

4-
__version__ = "0.9.4"
4+
__version__ = "0.9.5"

0 commit comments

Comments
 (0)