Skip to content

Commit 0a56e05

Browse files
committed
change: release v1.1.0
1 parent 738276d commit 0a56e05

File tree

2 files changed

+90
-1
lines changed

2 files changed

+90
-1
lines changed

CHANGELOG.md

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
## v1.1.0 (2025-03-04)
2+
3+
4+
- refactor: switch to pyproject.toml for configuration
5+
- change: drop python 3.8 support
6+
- ci: upgrade actions, add python 3.13 to build matrix
7+
- fix: workaround for wasmtime crash on macos
8+
- https://github.com/igrr/astyle_py/issues/7
9+
- change: upgrade wasmtime to 30.0.0
10+
- change(ci): add a job with python 3.12
11+
12+
## v1.0.5 (2023-10-27)
13+
14+
15+
- release v1.0.5
16+
- fix(deps): update pyyaml to 6.0.1
17+
- Fixes incompatibility with Cython 3.0.0
18+
19+
## v1.0.4 (2023-10-03)
20+
21+
22+
- release v1.0.4
23+
- fix(deps): allow newer compatible versions of dependencies
24+
- fix(pre-commit): remove unnecessary 'pass_filenames: true'
25+
- pass_filenames==true by default.
26+
27+
## v1.0.3 (2023-09-27)
28+
29+
30+
- release v1.0.3
31+
- fix(main): fix incorrect warning, cover main with tests
32+
33+
## v1.0.2 (2023-09-26)
34+
35+
36+
- release v1.0.2
37+
- feat: print a note if no files were checked
38+
39+
## v1.0.1 (2023-09-25)
40+
41+
42+
- release v1.0.1
43+
- fix(astyle): fix error handling to not segfault
44+
- fix(rules): remove version option in rules file, since it doesn't work
45+
46+
## v1.0.0 (2023-09-25)
47+
48+
49+
- release v1.0.0
50+
- chore(readme): add badges
51+
- chore(ci): update checkout and setup-python actions
52+
- fix(setup): fix package_data for the new location of WASM files
53+
- feat(deps): update to wasmtime 12.0.0, drop python 3.7
54+
- fix(readme): correct --astyle-version argument syntax
55+
- feat: add support for multiple astyle versions; add 3.4.7
56+
57+
## v0.9.1 (2023-04-13)
58+
59+
60+
- release v0.9.1
61+
- upgrade pre-commit hooks
62+
- fix args.rules not handled
63+
- iterate_files_rules was implemented in 71eb50fba, but I forgot to
64+
update iterate_files to call it.
65+
66+
## v0.9.0 (2022-08-31)
67+
68+
69+
- release v0.9.0
70+
- upgrade wasmtime to 0.40.0
71+
- add CI workflow
72+
- extend README.md and CONTRIBUTING.md
73+
- add a sample
74+
- update setup.cfg, add pyproject.toml
75+
- - change deprecated license_file to license_files
76+
- add classifiers
77+
- implement processing of rules files
78+
- refactor files iteration
79+
- move tests to pytest
80+
- split astyle_wrappers into multiple files
81+
- upgrade python and wasmtime dependencies
82+
- add pre-commit, drop requirements.txt
83+
- update to wasmtime==0.29.0
84+
- * wasmtime version pinned in setup.cfg and requirements.txt
85+
* changes to support new wasmtime API
86+
* move argument parsing out of 'main' into a separate function
87+
* add a couple simple test cases
88+
- Implement more options, expand readme
89+
- initial version

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The main reason to use this Python wrapper, rather than native `astyle` binaries
1919
```yaml
2020
repos:
2121
- repo: https://github.com/igrr/astyle_py.git
22-
rev: v1.0.5
22+
rev: v1.1.0
2323
hooks:
2424
- id: astyle_py
2525
args: [--astyle-version=3.4.7 --style=linux]

0 commit comments

Comments
 (0)