Skip to content

Commit

Permalink
2024.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeNaccarato committed Jul 5, 2024
1 parent 31ac8e4 commit dafd5c8
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ project_email: blake.naccarato@gmail.com
project_name: boilercv
project_owner_github_username: softboiler
project_owner_name: Blake Naccarato, Kwang Jin Kim
project_version: 2024.1.1
project_version: 2024.1.2
python_version: '3.11'
year_of_project_creation: 2022
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ body:
id: "latest-version"
attributes:
label: "Please confirm that this bug affects the latest version"
description: "Please verify the issue is present in the latest version by installing it with `pip install boilercv==2024.1.1` and checking that the bug is still there"
description: "Please verify the issue is present in the latest version by installing it with `pip install boilercv==2024.1.2` and checking that the bug is still there"
options:
- required: True
label: "This bug affects version `2024.1.1` of `boilercv`."
label: "This bug affects version `2024.1.2` of `boilercv`."
- type: "checkboxes"
id: "operating-systems"
attributes:
Expand Down
4 changes: 2 additions & 2 deletions .github/issue_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Please apply the `bug` label

### Please confirm that this bug affects the latest version

<!-- Please verify the issue is present in the latest version by installing it with `pip install boilercv==2024.1.1` and checking that the bug is still there #} -->
<!-- Please verify the issue is present in the latest version by installing it with `pip install boilercv==2024.1.2` and checking that the bug is still there #} -->

- [ ] This bug affects version `2024.1.1` of `boilercv`.
- [ ] This bug affects version `2024.1.2` of `boilercv`.

### Please indicate which operating system(s) you are using

Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@
{
"label": "task: Release version",
"type": "shell",
"command": ". scripts/Initialize-Shell.ps1; git tag --sign -m $($version = (Get-Content '.copier-answers.yml' | Select-String -Pattern '^project_owner_github_username:\\s(.+)$').Matches.Groups[1].value) $version; git push; gh release create --discussion-category='announcements' --notes='' --title=$version --verify-tag $version",
"command": ". scripts/Initialize-Shell.ps1; $version = (Get-Content '.copier-answers.yml' | Select-String -Pattern '^project_version:\\s(.+)$').Matches.Groups[1].value; git tag --sign -m $version $version; git push; gh release create --discussion-category='announcements' --notes='' --title=$version --verify-tag $version",
"icon": { "id": "tag" },
"problemMatcher": []
},
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)

<!-- towncrier release notes start -->

## [2024.1.2](https://github.com/softboiler/boilercv/tree/2024.1.2)

### Changes

- Sign commits and tags for releases ([471ce81](https://github.com/softboiler/boilercv/commit/471ce81841bc318e5d7780181355dc0dda8ad658))
- Resolve two incompatible `numpy` pins in Binder requirements ([#224](https://github.com/softboiler/boilercv/issues/224))

## [2024.1.1](https://github.com/softboiler/boilercv/tree/2024.1.1)

### Changes
Expand Down
1 change: 0 additions & 1 deletion changelog/+2024-07-05T20-25-33.3365727Z.change.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/224.change.md

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "boilercv"
version = "2024.1.1"
version = "2024.1.2"
description = "Computer vision routines suitable for nucleate pool boiling bubble analysis"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down

0 comments on commit dafd5c8

Please sign in to comment.