Skip to content

Commit

Permalink
Merge pull request #25 from kabilar/main
Browse files Browse the repository at this point in the history
Fix PyPI release and update changelog
  • Loading branch information
CBroz1 authored Jun 6, 2022
2 parents f9eb96b + 421c762 commit 09acdc5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Compile image
run: |
export PKG_NAME=$(python3 -c "print([p for p in __import__('setuptools').find_packages() if '.' not in p][0])")
export PKG_VERSION=$(cat ${PKG_NAME}/version.py | awk -F\' '/__version__ = / {print $2}')
export PKG_VERSION=$(cat ${PKG_NAME}/version.py | awk -F\" '/__version__ = / {print $2}')
export HOST_UID=$(id -u)
docker-compose -f docker-compose-build.yaml up --exit-code-from element --build
IMAGE=$(docker images --filter "reference=datajoint/${PKG_NAME}*" \
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
run: |
PKG_NAME=$(python3 -c "print([p for p in __import__('setuptools').find_packages() if '.' not in p][0])")
SDIST_PKG_NAME=$(echo ${PKG_NAME} | sed 's|_|-|g')
PKG_VERSION=$(cat ${PKG_NAME}/version.py | awk -F\' '/__version__ = / {print $2}')
PKG_VERSION=$(cat ${PKG_NAME}/version.py | awk -F\" '/__version__ = / {print $2}')
echo "PKG_NAME=${PKG_NAME}" >> $GITHUB_ENV
echo "PKG_VERSION=${PKG_VERSION}" >> $GITHUB_ENV
echo "SDIST_PKG_NAME=${SDIST_PKG_NAME}" >> $GITHUB_ENV
Expand Down
22 changes: 11 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.

## [0.1.1] - 2022-05-10
### Added
+ NWB export
+ Shorten subject primary key to varchar(8)
+ Adopted black formatting into code base

+ Add - NWB export
+ Update - Shorten subject primary key to varchar(8)
+ Add - Adopt black formatting into code base

## [0.1.0b0] - 2021-05-07
### Added
+ First beta release

+ Update - First beta release

## [0.1.0a1] - 2021-05-03
### Added
+ Added GitHub Action release process
+ Added `subject` schema
+ Added `genotyping` schema

+ Add - GitHub Action release process
+ Add - `subject` schema
+ Add - `genotyping` schema

[0.1.0b0]: https://github.com/datajoint/element-animal/compare/0.1.0a1...0.1.0b0
[0.1.1]: https://github.com/datajoint/element-animal/releases/tag/0.1.1
[0.1.0b0]: https://github.com/datajoint/element-animal/releases/tag/0.1.0b0
[0.1.0a1]: https://github.com/datajoint/element-animal/releases/tag/0.1.0a1

0 comments on commit 09acdc5

Please sign in to comment.