Skip to content

Commit

Permalink
Merge a1336c2 into release
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaasRostock authored Jan 30, 2025
2 parents 8932fc4 + a1336c2 commit e4ba848
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/_build_and_publish_documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ jobs:
- uses: sphinx-doc/github-problem-matcher@master
- name: Build documentation
run: |
uv run docs/make.bat html
cd docs
uv run make html
- name: Clone and cleanup gh-pages branch
run: |
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/_merge_into_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,4 @@ jobs:
with:
type: now
target_branch: release
# @TODO: A dedicated RELEASE_TOKEN should be created in the repo settings
# and used for this task when in production.
# It is set here to the default GITHUB_TOKEN only
# for demonstration purposes, enabling the workflow in the repo template
# to run without additional configuration.
# github_token: ${{ secrets.RELEASE_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.RELEASE_TOKEN }}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e

-/-

## [0.7.1] - 2025-01-30

### Changed

* Made explicit that Python 3.13 is not yet supported in the pyproject.toml file

## [0.7.0] - 2025-01-22

### Changed
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ keywords:
- Systematic assessment
license: MIT
url: 'https://github.com/dnv-opensource/ship-traffic-generator'
version: 0.7.0
version: 0.7.1
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
SOURCEDIR = .
SOURCEDIR = source
BUILDDIR = build

# Put it first so that "make" without argument is like "make help".
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
author = "Tom Arne Pedersen, Claas Rostock, Minos Hemrich"

# The full version, including alpha/beta/rc tags
release = "0.7.0"
release = "0.7.1"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ packages = [

[project]
name = "trafficgen"
version = "0.7.0"
version = "0.7.1"
description = "Automatic generation of ship traffic situations from a set of predefined situations"
readme = "README.md"
requires-python = ">= 3.11"
requires-python = ">= 3.11, < 3.13"
license = { file = "LICENSE" }
authors = [
{ name = "Tom Arne Pedersen", email = "[email protected]" },
Expand Down

0 comments on commit e4ba848

Please sign in to comment.