diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4833d59..2c79a2f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,7 +2,7 @@ name: Lint on: [push, pull_request] jobs: - build: + lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index eba1b16..388f8a3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,7 @@ name: Test on: [push, pull_request] jobs: - build: + test: runs-on: ubuntu-22.04 strategy: matrix: diff --git a/CHANGELOG.md b/CHANGELOG.md index ac29e51..98cc978 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.23.0] - 2023-08-30 + ### Changed - Flatten & Create Template: Previously, CSV filenames were truncated to 31 characters, which is the maximum length of a sheet name in Excel. diff --git a/setup.py b/setup.py index b2b862e..75f48a2 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def run(self): setup( name="flattentool", - version="0.22.0", + version="0.23.0", author="Open Data Services", author_email="code@opendataservices.coop", packages=["flattentool"],