diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 54ca35cb4..5a4e8dab3 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -1,5 +1,5 @@ name: Build and test -on: [pull_request] +on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} diff --git a/.github/workflows/docs_check.yml b/.github/workflows/docs_check.yml index b8f803c73..fa344ba82 100644 --- a/.github/workflows/docs_check.yml +++ b/.github/workflows/docs_check.yml @@ -1,5 +1,5 @@ name: Check that docs build -on: [push, pull_request] +on: [pull_request] jobs: build: @@ -15,7 +15,7 @@ jobs: miniforge-variant: Mambaforge activate-environment: fiscalsim-us-dev environment-file: environment.yml - python-version: "3.10" + python-version: "3.11" auto-activate-base: false - name: Install package and build documentation shell: bash -l {0} diff --git a/CHANGELOG.md b/CHANGELOG.md index 10733cb8b..39b17b239 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.9] - 2024-04-11 00:30:00 + +### Added + +- Reinstates running `build_and_test.yml` on push after merge. +- Limits `docs_check.yml` to only run on pull request commits. +- Updates some tags in `README.md.` + ## [0.2.8] - 2024-04-10 22:30:00 ### Added @@ -203,6 +211,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First prototype version based off of openfisca-us and tax-calculator. +[0.2.9]: https://github.com/TheCGO/fiscalsim-us/compare/v0.2.8...v0.2.9 [0.2.8]: https://github.com/TheCGO/fiscalsim-us/compare/v0.2.7...v0.2.8 [0.2.7]: https://github.com/TheCGO/fiscalsim-us/compare/v0.2.6...v0.2.7 [0.2.6]: https://github.com/TheCGO/fiscalsim-us/compare/v0.2.5...v0.2.6 diff --git a/README.md b/README.md index 51360e95a..82e462bef 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ | | | | --- | --- | | Org | [![CGO cataloged](https://img.shields.io/badge/CGO-catalogued-9cf)](https://github.com/TheCGO) [![OS License: AGPL-3.0](https://img.shields.io/badge/OS%20License-AGPL%203.0-yellow)](https://github.com/TheCGO/fiscalsim-us/blob/main/LICENSE) | -| Package | [![Python 3.10](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/release/python-31013/) [![PyPI Latest Release](https://img.shields.io/pypi/v/fiscalsim-us.svg)](https://pypi.org/project/fiscalsim-us/) [![PyPI Downloads](https://img.shields.io/pypi/dm/fiscalsim-us.svg?label=PyPI%20downloads)](https://pypi.org/project/fiscalsim-us/) | +| Package | [![Python 3.10](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/release/python-31013/) [![Python 3.11](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/release/python-3119/) [![PyPI Latest Release](https://img.shields.io/pypi/v/fiscalsim-us.svg)](https://pypi.org/project/fiscalsim-us/) [![PyPI Downloads](https://img.shields.io/pypi/dm/fiscalsim-us.svg?label=PyPI%20downloads)](https://pypi.org/project/fiscalsim-us/) | | Testing | ![example event parameter](https://github.com/TheCGO/fiscalsim-us/actions/workflows/build_and_test.yml/badge.svg?branch=main) ![example event parameter](https://github.com/TheCGO/fiscalsim-us/actions/workflows/deploy_docs.yml/badge.svg?branch=main) ![example event parameter](https://github.com/TheCGO/fiscalsim-us/actions/workflows/check_format.yml/badge.svg?branch=main) [![Codecov](https://codecov.io/gh/TheCGO/fiscalsim-us/branch/main/graph/badge.svg)](https://codecov.io/gh/TheCGO/fiscalsim-us) | diff --git a/changelog.yaml b/changelog.yaml index fb3c43ae7..a26af9284 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -184,3 +184,10 @@ added: - Limits `build_and_test.yml` GH Action to pull requests and no pushes on merge. It also limits the codecov run to the Linux-OS tests on the latest version of Python (currently Python 3.11). date: 2024-04-10 22:30:00 +- bump: patch + changes: + added: + - Reinstates running `build_and_test.yml` on push after merge. + - Limits `docs_check.yml` to only run on pull request commits. + - Updates some tags in `README.md.` + date: 2024-04-11 00:30:00 diff --git a/setup.py b/setup.py index a0974675a..3a6f532e9 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="fiscalsim-us", - version="0.2.8", + version="0.2.9", author="Center for Growth and Opportunity at Utah State University (CGO)", author_email="fiscalsim@thecgo.org", long_description=readme,