Skip to content

Commit

Permalink
Merge pull request #101 from IN-CORE/release-1.3.0
Browse files Browse the repository at this point in the history
Release 1.3.0
  • Loading branch information
ywkim312 authored Feb 7, 2024
2 parents 44f159b + 0982e97 commit 9977bb6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ jobs:
run: |
CHANNEL=$(cat config.yml | grep "Channel" | head -1 | awk -F ": " '{print $2}' | sed 's/["[:space:]]//g')
INCORE_VERSION=$(cat config.yml | grep "INCORE_VERSION" | head -1 | awk -F= "{print $2 }" | sed "s/[[:alpha:]|,|-|\"|:|#|[:space:]_]//g" | sed "s/-//g")
PYINCORE_VERSION=$(cat config.yml | grep "PyIncore" | head -1 | awk -F= "{print $2 }" | sed "s/[[:alpha:]|,|-|\"|:|#|[:space:]]//g" | sed "s/-//g")
PYINCORE_VIZ_VERSION=$(cat config.yml | grep "PyIncore-Viz" | head -1 | awk -F= "{print $2 }" | sed "s/[[:alpha:]|,|-|\"|:|#|[:space:]]//g" | sed "s/-//g")
PYINCORE_DATA_VERSION=$(cat config.yml | grep "PyIncore-Data" | head -1 | awk -F= "{print $2 }" | sed "s/[[:alpha:]|,|-|\"|:|#|[:space:]]//g" | sed "s/-//g")
PYINCORE_VERSION=$(cat config.yml | grep "PyIncore" | head -1 | awk -F: '{print $2}' | tr -d '"|[:space:]' | sed 's/-//g')
PYINCORE_VIZ_VERSION=$(cat config.yml | grep "PyIncore-Viz" | head -1 | awk -F: '{print $2}' | tr -d '"|[:space:]' | sed 's/-//g')
PYINCORE_DATA_VERSION=$(cat config.yml | grep "PyIncore-Data" | head -1 | awk -F: '{print $2}' | tr -d '"|[:space:]' | sed 's/-//g')
echo "CHANNEL=${CHANNEL}" >> $GITHUB_ENV
echo "INCORE_VERSION=${INCORE_VERSION}" >> $GITHUB_ENV
echo "PYINCORE_VERSION=${PYINCORE_VERSION}" >> $GITHUB_ENV
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.3.0] - 2024-02-07
### Added
- Github action works with RC version of components [#90](https://github.com/IN-CORE/incore-lab/issues/90)

### Changed
- IN-CORE release for 5.0.0 with pyincore 1.16.0 [#100](https://github.com/IN-CORE/incore-lab/issues/100)

## [1.2.1] - 2023-12-20

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.lab
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ RUN mamba config --add channels conda-forge && \
# Install pyincore, pyincore-viz and other mamba packages
RUN umask 0 && \
find /opt/conda ! -perm -o=w -print | sort > /tmp/oldfiles && \
mamba install -c ${CHANNEL} -y \
mamba install -c ${CHANNEL} -c in-core/label/rc -y \
pyincore=${PYINCORE} \
pyincore-viz=${PYINCORE_VIZ} \
pyincore-data=${PYINCORE_DATA} && \
Expand Down
8 changes: 4 additions & 4 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project: "IN-CORE Lab"
author: "Yong Wook Kim"
Channel: "in-core"
# version form must be "x.x.x"
INCORE_VERSION: "4.8.1"
PyIncore: "1.15.1"
PyIncore-Viz: "1.9.0"
PyIncore-Data: "0.6.1"
INCORE_VERSION: "5.0.0"
PyIncore: "1.16.0"
PyIncore-Viz: "1.10.0"
PyIncore-Data: "0.6.2"

0 comments on commit 9977bb6

Please sign in to comment.