Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
default_stages: [ commit ]
default_stages: [ pre-commit ]
repos:

- repo: local
Expand Down
1 change: 1 addition & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changes

* [unreleased](unreleased.md)
* [1.1.0](changes_1.1.0.md)
* [1.0.0](changes_1.0.0.md)
* [0.21.0](changes_0.21.0.md)
Expand Down
6 changes: 3 additions & 3 deletions doc/changes/changes_1.1.0.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Script-Languages-Container-Tool 1.1.0, released t.b.d.
# 1.1.0 - 2025-01-29

Code name: t.b.d.
Code name: Language Definition and Export optimization

## Summary

t.b.d.
This release optimizes the export step to minimize disk space. Also, it adds support for the `language_definitions.json`. Besides this it also contains some refactorings.

## Features

Expand Down
1 change: 1 addition & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Unreleased
19 changes: 13 additions & 6 deletions doc/developer_guide/developer_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,19 @@ Instructions
### Prerequisites

* Change log needs to be up to date
* Latest change log version needs to match project and package version
* Release tag needs to match package, changelog and project version
* For Example:
* Tag: `0.4.0`
* Changelog: `changes_0.4.0.md`
* `poetry version -s`: 0.4.0
* ``unreleased`` change log version needs to be up-to-date
* Release tag needs to match package

For Example:
* Tag: 0.4.0
* \`poetry version -s\`: 0.4.0

### Preparing the Release
Run the following nox task in order to prepare the changelog.

.. code-block:: shell

nox -s release:prepare

### Triggering the Release
In order to trigger a release a new tag must be pushed to Github.
Expand Down
Loading