File tree 4 files changed +8
-7
lines changed
4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
1
# This is a basic workflow to help you get started with Actions
2
2
3
- name : CI
3
+ name : Continuous Integration
4
4
5
5
# Controls when the workflow will run
6
6
on :
Original file line number Diff line number Diff line change @@ -2,8 +2,9 @@ Changelog
2
2
=========
3
3
4
4
5
- (unreleased)
6
- ------------
5
+ 0.1.3 (2023-02-16)
6
+ ------------------
7
+ - Release: version 0.1.3 🚀 [ drbecavin]
7
8
- Release: version 🚀 [ drbecavin]
8
9
- Release: version 🚀 [ drbecavin]
9
10
Original file line number Diff line number Diff line change 1
1
.ONESHELL :
2
2
ENV_PREFIX =$(shell python -c "if __import__('pathlib') .Path('.venv/bin/pip').exists(): print('.venv/bin/')")
3
3
USING_POETRY =$(shell grep "tool.poetry" pyproject.toml && echo "yes")
4
- VERSION =$(shell cat checkatlas/VERSION )
4
+ VERSION =$(shell poetry version | awk '{print $$2}' )
5
5
6
6
.PHONY : help
7
7
help : # # Show the help.
@@ -54,9 +54,9 @@ docs: ## Build the documentation.
54
54
.PHONY : release
55
55
release : # # Create a new tag for release.
56
56
@echo " WARNING: This operation will create s version tag and push to github"
57
- @echo " Reading version $( VERSION) from: checkatlas/VERSION "
57
+ @echo " Reading version $( VERSION) from: pyproject.toml "
58
58
@$(ENV_PREFIX ) poetry run gitchangelog > HISTORY.md
59
- @git add checkatlas/VERSION HISTORY.md
59
+ @git add HISTORY.md
60
60
@git commit -m " release: version $( VERSION) 🚀"
61
61
@echo " creating git tag : $( VERSION) "
62
62
@git tag $(VERSION )
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " checkatlas"
3
- version = " 0.1.3 "
3
+ version = " 0.1.10 "
4
4
description =" One liner tool to check the quality of your single-cell atlases"
5
5
authors = [" becavin-lab" ]
6
6
readme = " README.md"
You can’t perform that action at this time.
0 commit comments