-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from esteinig/release/0.2.0
Release 0.2.0
- Loading branch information
Showing
9 changed files
with
57 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. | ||
|
||
- - - | ||
## 0.2.0 - 2024-01-24 | ||
#### Features | ||
- **(changelog)** auto bump version config - (8448509) - esteinig | ||
|
||
- - - | ||
|
||
## 0.1.0 - 2024-01-24 | ||
#### Bug Fixes | ||
- **(app)** fix session plot config reset - (d737a40) - esteinig | ||
- **(cli)** sort of all working - (f6754d8) - esteinig | ||
- **(cli)** terminal input fixes - (7f4c6b9) - esteinig | ||
- **(stack)** data cleaner default settings - (530c33a) - esteinig | ||
#### Refactoring | ||
- **(app)** refactor async action requests - (35f6633) - esteinig | ||
- **(brick)** ring store and reference selection - (88668e8) - esteinig | ||
- **(brick)** validators to field_validators in pydantic v2; custom 'labels in label ring schema - (c8c60d3) - esteinig | ||
|
||
- - - | ||
|
||
Changelog generated by [cocogitto](https://github.com/cocogitto/cocogitto). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "brick", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "vite dev", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
LATEST=$1 | ||
VERSION=$2 | ||
|
||
|
||
|
||
# Check that all commits | ||
# comply with specifications | ||
cog check | ||
|
||
# Echo the version change | ||
echo "bumping $LATEST to $VERSION" | ||
|
||
# Replace docker-compose main script version | ||
sed -i 's/PUBLIC_BRICK_VERSION='"$LATEST"'/PUBLIC_BRICK_VERSION='"$VERSION"'/' docker/brick.env | ||
|
||
# Replace Python package version line | ||
sed -i 's/version = "'"${LATEST}"'"/version = "'"${VERSION}"'"/' pyproject.toml | ||
|
||
# Replace Sveltekit application version | ||
# `npm install` or `build` in the container will update the `package-lock.json` | ||
sed -i 's/"version": "'"${LATEST}"'"/"version": "'"${VERSION}"'"/' app/package.json |