Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dc006fc675 | ||
| 798a949bbf | |||
| 318ae2ea06 | |||
|
|
9a8f2b7fbf | ||
| dbff716cdb | |||
| b8b355025d | |||
| 8cd5c23cf4 | |||
|
|
16e21bf7a6 | ||
| 8a0d07aea0 |
12
.drone.yml
12
.drone.yml
@@ -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
|
||||
|
||||
|
||||
15
CHANGELOG.md
15
CHANGELOG.md
@@ -2,6 +2,21 @@
|
||||
|
||||
<!--next-version-placeholder-->
|
||||
|
||||
## v0.2.5 (2022-02-25)
|
||||
### Fix
|
||||
* Bump ([`798a949`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/798a949bbffee3cdfc41fb897d84e488af0fa636))
|
||||
|
||||
## 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))
|
||||
|
||||
## v0.2.2 (2022-02-24)
|
||||
### Fix
|
||||
* Test fixed asset upload ([`bf59490`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/bf59490a32cc9c0aa7e1c6257ab763551a0a5e5f))
|
||||
|
||||
@@ -1 +1 @@
|
||||
__version__ = "0.2.2"
|
||||
__version__ = "0.2.5"
|
||||
8
poetry.lock
generated
8
poetry.lock
generated
@@ -364,7 +364,7 @@ yaml = ["PyYaml (>=5.2)"]
|
||||
|
||||
[[package]]
|
||||
name = "python-semantic-release"
|
||||
version = "7.25.1"
|
||||
version = "7.25.2"
|
||||
description = "Automatic Semantic Versioning for Python projects"
|
||||
category = "dev"
|
||||
optional = false
|
||||
@@ -608,7 +608,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-
|
||||
[metadata]
|
||||
lock-version = "1.1"
|
||||
python-versions = "^3.7"
|
||||
content-hash = "a516bec5ab9a060d29f6f3701a9325badff53bb4272e5f06334c5a0d7481fc4a"
|
||||
content-hash = "be3577688cc07bf24a8b1f425882744d10d5b20e7931fd1f97438216a5265755"
|
||||
|
||||
[metadata.files]
|
||||
atomicwrites = [
|
||||
@@ -841,8 +841,8 @@ python-gitlab = [
|
||||
{file = "python_gitlab-2.10.1-py3-none-any.whl", hash = "sha256:581a219759515513ea9399e936ed7137437cfb681f52d2641626685c492c999d"},
|
||||
]
|
||||
python-semantic-release = [
|
||||
{file = "python-semantic-release-7.25.1.tar.gz", hash = "sha256:d786a0d45de363fc28b2ee19cc2f9f618ba5291c90eeff896e56dd652432129e"},
|
||||
{file = "python_semantic_release-7.25.1-py3-none-any.whl", hash = "sha256:79626f689a8bda1d08aa5e526cf2bed8d7507b7b3d8f7d7225c7567c664dca6a"},
|
||||
{file = "python-semantic-release-7.25.2.tar.gz", hash = "sha256:134294d3ee02a3aa464bf3c00c7777b0c84c6b3332fe234e8b7a087cbf3866d2"},
|
||||
{file = "python_semantic_release-7.25.2-py3-none-any.whl", hash = "sha256:8b21bf503486bf13db048501da60362f9ab5adb88435fa431186bcbf24d431ef"},
|
||||
]
|
||||
pywin32-ctypes = [
|
||||
{file = "pywin32-ctypes-0.2.0.tar.gz", hash = "sha256:24ffc3b341d457d48e8922352130cf2644024a4ff09762a2261fd34c36ee5942"},
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "cic-utils"
|
||||
version = "0.2.2"
|
||||
version = "0.2.5"
|
||||
description = ""
|
||||
authors = ["William Luke <williamluke4@gmail.com>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
@@ -13,7 +13,7 @@ python = "^3.7"
|
||||
[tool.poetry.dev-dependencies]
|
||||
pytest = "6.2.5"
|
||||
pytest-cov = "2.10.1"
|
||||
python-semantic-release = "^7.25.1"
|
||||
python-semantic-release = "^7.25.2"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
@@ -30,9 +30,8 @@ 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"
|
||||
hvcs="gitea"
|
||||
hvcs_domain = "git.grassecon.net"
|
||||
|
||||
Reference in New Issue
Block a user