Skip to content

Commit fc4c0db

Browse files
committed
release: version 0.1.10 🚀
1 parent c988775 commit fc4c0db

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This is a basic workflow to help you get started with Actions
22

3-
name: CI
3+
name: Continuous Integration
44

55
# Controls when the workflow will run
66
on:

HISTORY.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ Changelog
22
=========
33

44

5-
(unreleased)
6-
------------
5+
0.1.3 (2023-02-16)
6+
------------------
7+
- Release: version 0.1.3 🚀 [drbecavin]
78
- Release: version 🚀 [drbecavin]
89
- Release: version 🚀 [drbecavin]
910

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.ONESHELL:
22
ENV_PREFIX=$(shell python -c "if __import__('pathlib').Path('.venv/bin/pip').exists(): print('.venv/bin/')")
33
USING_POETRY=$(shell grep "tool.poetry" pyproject.toml && echo "yes")
4-
VERSION=$(shell cat checkatlas/VERSION)
4+
VERSION=$(shell poetry version | awk '{print $$2}')
55

66
.PHONY: help
77
help: ## Show the help.
@@ -54,9 +54,9 @@ docs: ## Build the documentation.
5454
.PHONY: release
5555
release: ## Create a new tag for release.
5656
@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"
5858
@$(ENV_PREFIX)poetry run gitchangelog > HISTORY.md
59-
@git add checkatlas/VERSION HISTORY.md
59+
@git add HISTORY.md
6060
@git commit -m "release: version $(VERSION) 🚀"
6161
@echo "creating git tag : $(VERSION)"
6262
@git tag $(VERSION)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "checkatlas"
3-
version = "0.1.3"
3+
version = "0.1.10"
44
description="One liner tool to check the quality of your single-cell atlases"
55
authors = ["becavin-lab"]
66
readme = "README.md"

0 commit comments

Comments
 (0)