Skip to content

Commit 1d0fa6c

Browse files
committed
Prepare for release – update changelog
1 parent 5b4a853 commit 1d0fa6c

6 files changed

Lines changed: 18 additions & 6 deletions

File tree

.github/workflows/pythonapp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: |
2424
python -m pip install --upgrade pip
2525
pip install -r Requirements.txt
26-
curl -O https://www.antlr.org/download/antlr-4.10.1-complete.jar
26+
curl -O https://www.antlr.org/download/antlr-4.11.1-complete.jar
2727
- name: Lint with flake8
2828
run: |
2929
pip install flake8

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
All notable changes to this project from version 0.4.0 upwards are documented in this file.
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
44

5+
## [0.6.0] – 2023-10-10
6+
7+
### Added
8+
- Support for Python 3.11 and 3.12
9+
- Classes to track issues (ported from Kolasu)
10+
11+
### Changed
12+
- Updated ANTLR runtime to 4.11.1
13+
14+
### Fixed
15+
- `internal_field` on Python 3.10+
16+
517
## [0.5.0] – 2023-09-06
618

719
### Added

Requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
antlr4-python3-runtime==4.10
2-
pyecore==0.12.2; extra == 'ecore'
1+
antlr4-python3-runtime==4.11.1
2+
pyecore==0.12.2; extra == 'ecore'

pylasu/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.5.0"
1+
__version__ = "0.6.0"

pyproject.toml

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

55
[project]
66
name = "pylasu"
7-
version = "0.5.0"
7+
version = "0.6.0"
88
authors = [
99
{ name="Lorenzo Addazi", email="lorenzo.addazi@strumenta.com" },
1010
{ name="Alessio Stalla", email="alessio.stalla@strumenta.com" },

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = Pylasu
3-
version: 0.5.0
3+
version: 0.6.0
44

55
[coverage:run]
66
branch = True

0 commit comments

Comments
 (0)