4 Commits

Author SHA1 Message Date
semantic-release
9a8f2b7fbf 0.2.4
All checks were successful
continuous-integration/drone/push Build is passing
Automatically generated by python-semantic-release
2022-02-25 07:14:18 +00:00
dbff716cdb fix: test pypi publish
All checks were successful
continuous-integration/drone/push Build is passing
2022-02-25 10:13:27 +03:00
b8b355025d docs: remove old changelog
All checks were successful
continuous-integration/drone/push Build is passing
2022-02-25 09:43:56 +03:00
8cd5c23cf4 ci: add pip cache
All checks were successful
continuous-integration/drone/push Build is passing
2022-02-25 09:39:38 +03:00
5 changed files with 21 additions and 6 deletions

View File

@@ -22,7 +22,8 @@ steps:
volumes:
- name: poetry_cache
path: /root/.cache/pypoetry
- name: pip_cache
path: /root/.cache/pip
- name: publish
image: python:3.7.2
commands:
@@ -38,13 +39,22 @@ steps:
environment:
LOGLEVEL: info
GIT_SSL_NO_VERIFY: 1
REPOSITORY_USERNAME: __token__
REPOSITORY_PASSWORD:
from_secret: pypi_token
GITEA_TOKEN:
from_secret: gitea_token
volumes:
- name: poetry_cache
path: /root/.cache/pypoetry
- name: pip_cache
path: /root/.cache/pip
volumes:
- name: poetry_cache
host:
path: /tmp/cache/drone/pypoetry
- name: pip_cache
host:
path: /tmp/cache/drone/pip

View File

@@ -1,2 +0,0 @@
- 0.1.0
* Add wei converters

View File

@@ -2,6 +2,13 @@
<!--next-version-placeholder-->
## v0.2.4 (2022-02-25)
### Fix
* Test pypi publish ([`dbff716`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/dbff716cdbb15e2c59a750e726c22ec59eb57780))
### Documentation
* Remove old changelog ([`b8b3550`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/b8b355025d96f2e7adb9546ccf04755d0c359952))
## v0.2.3 (2022-02-25)
### Fix
* Bump python-semantic-release ([`8a0d07a`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/8a0d07aea00c0ced3318f7f3b25a9cfc6593954a))

View File

@@ -1 +1 @@
__version__ = "0.2.3"
__version__ = "0.2.4"

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "cic-utils"
version = "0.2.3"
version = "0.2.4"
description = ""
authors = ["William Luke <williamluke4@gmail.com>"]
license = "GPL-3.0-or-later"
@@ -30,7 +30,7 @@ version_variable = [
]
version_source = "commit"
branch = "main"
upload_to_pypi = false
upload_to_repository=true
upload_to_release = true
repository_url = "https://git.grassecon.net/grassrootseconomics/cic-utils"
build_command = "pip install poetry && poetry build"