Compare commits
11 Commits
lum/poetry
...
v0.2.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
850d7890d7 | ||
| 553f9c0310 | |||
| adac26c82d | |||
| d8739a71a6 | |||
| 5366d1af93 | |||
| 4c920b2717 | |||
| 99070b6ee4 | |||
| 2fd72c199b | |||
| f75c44cc1c | |||
| 932bd0ff73 | |||
| b552d717d9 |
56
.drone.yml
56
.drone.yml
@@ -4,12 +4,12 @@
|
||||
################
|
||||
|
||||
kind: pipeline
|
||||
name: run_tests
|
||||
name: default
|
||||
type: docker
|
||||
|
||||
steps:
|
||||
# Run tests against Python with pytest
|
||||
- name: ci
|
||||
- name: test
|
||||
image: python:3.7.2
|
||||
commands:
|
||||
# Install dependencies
|
||||
@@ -23,38 +23,28 @@ steps:
|
||||
- name: poetry_cache
|
||||
path: /root/.cache/pypoetry
|
||||
|
||||
- name: publish
|
||||
image: python:3.7.2
|
||||
commands:
|
||||
# Install dependencies
|
||||
- pip install poetry
|
||||
- poetry install
|
||||
- poetry run semantic-release publish
|
||||
depends_on:
|
||||
- test
|
||||
when:
|
||||
branch:
|
||||
- main
|
||||
environment:
|
||||
LOGLEVEL: info
|
||||
GIT_SSL_NO_VERIFY: 1
|
||||
GITEA_TOKEN:
|
||||
from_secret: gitea_token
|
||||
|
||||
volumes:
|
||||
- name: poetry_cache
|
||||
path: /root/.cache/pypoetry
|
||||
volumes:
|
||||
- name: poetry_cache
|
||||
host:
|
||||
path: /tmp/cache/drone/pypoetry
|
||||
---
|
||||
kind: pipeline
|
||||
name: publish
|
||||
type: docker
|
||||
|
||||
steps:
|
||||
- name: cd
|
||||
image: python:3.7.2
|
||||
commands:
|
||||
# Install dependencies
|
||||
- pip install --no-cache-dir poetry
|
||||
- poetry install
|
||||
- poetry run semantic-release publish
|
||||
environment:
|
||||
LOGLEVEL: info
|
||||
GITEA_TOKEN:
|
||||
from_secret: gitea_token
|
||||
volumes:
|
||||
- name: poetry_cache
|
||||
path: /root/.cache/pypoetry
|
||||
when:
|
||||
branch:
|
||||
- master
|
||||
event:
|
||||
- push
|
||||
depends_on:
|
||||
- run_tests
|
||||
volumes:
|
||||
- name: poetry_cache
|
||||
host:
|
||||
path: /tmp/cache/drone/pypoetry
|
||||
21
CHANGELOG.md
Normal file
21
CHANGELOG.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# Changelog
|
||||
|
||||
<!--next-version-placeholder-->
|
||||
|
||||
## v0.2.0 (2022-02-23)
|
||||
### Feature
|
||||
* **converters:** Add from_wei and to_wei ([`c044fb9`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/c044fb9c70b20ceff70613f5e35ab9d358545ee8))
|
||||
|
||||
### Fix
|
||||
* Disable check_build_status ([`adac26c`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/adac26c82d82d5ea26609437e434acee65021623))
|
||||
* Another ([`d8739a7`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/d8739a71a6aa5a33384208aa252ab772585b5365))
|
||||
* Another test ([`5366d1a`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/5366d1af930d3f8889c884a3743cd9b187d05a01))
|
||||
* Remove condition ([`4c920b2`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/4c920b27176502e0b6687e2eea51c9f2c4f0306f))
|
||||
* Use refs ([`99070b6`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/99070b6ee47d5b2a2946f4fc6fe8abf4b9d47d64))
|
||||
* Another test ([`2fd72c1`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/2fd72c199bb4118b1a6a4ed9deba780c2a0184ee))
|
||||
* Only publish on main ([`f75c44c`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/f75c44cc1c8ed1e6678a165dcc03e86d90d41bbb))
|
||||
* Drone publishing branch ([`932bd0f`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/932bd0ff73eb9074a22b1107484f50abf7bcbf9e))
|
||||
* Clean up ([`e9c537e`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/e9c537e29e83d4b9d4a7f2fde8c91116312a38b7))
|
||||
|
||||
### Documentation
|
||||
* Add ci status ([`50107b2`](https://git.grassecon.net/grassrootseconomics/cic-utils/commit/50107b205e2b652dc37dd5972cb66071eae91904))
|
||||
@@ -1 +1 @@
|
||||
__version__ = "0.1.0"
|
||||
__version__ = "0.2.0"
|
||||
@@ -36,4 +36,4 @@ repository_url = "https://git.grassecon.net/grassrootseconomics/cic-utils"
|
||||
build_command = "pip install poetry && poetry build"
|
||||
hvcs="gitea"
|
||||
hvcs_domain = "git.grassecon.net"
|
||||
check_build_status=true
|
||||
check_build_status=false
|
||||
Reference in New Issue
Block a user