Skip to content

Commit 95c25d1

Browse files
committed
Merge branch 'release/1.0.4'
2 parents 5b0902b + 13a751e commit 95c25d1

File tree

3 files changed

+31
-4
lines changed

3 files changed

+31
-4
lines changed

.github/workflows/pypi-release.yml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: PyPI release
22
on: [push]
33

44
jobs:
5-
pypi:
5+
pypi_kivy_garden_mapview:
66
runs-on: ubuntu-18.04
77
steps:
88
- uses: actions/checkout@v1
@@ -16,10 +16,30 @@ jobs:
1616
- name: Build
1717
run: |
1818
python setup.py sdist bdist_wheel
19+
- name: Publish package
20+
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
21+
uses: pypa/[email protected]
22+
with:
23+
user: __token__
24+
password: ${{ secrets.pypi_password_kivy_garden_mapview }}
25+
26+
pypi_mapview:
27+
runs-on: ubuntu-18.04
28+
steps:
29+
- uses: actions/checkout@v1
30+
- name: Set up Python 3.x
31+
uses: actions/setup-python@v1
32+
with:
33+
python-version: 3.x
34+
- name: Install dependencies
35+
run: |
36+
python -m pip install --user --upgrade setuptools wheel
37+
- name: Build
38+
run: |
1939
python setup_meta.py sdist bdist_wheel
2040
- name: Publish package
2141
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
2242
uses: pypa/[email protected]
2343
with:
2444
user: __token__
25-
password: ${{ secrets.pypi_password }}
45+
password: ${{ secrets.pypi_password_mapview }}

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
# Change Log
22

3-
## [Unreleased]
43

4+
## [1.0.4]
5+
6+
- Fix PyPI auto-deployment
7+
8+
## [1.0.3]
9+
10+
- Genral code linting/cleaning
11+
- Increase coverage testing from 14% to 35%
512
- Fix `Downloader` now checks for HTTP status code, refs #6
613

714
## [1.0.2]

kivy_garden/mapview/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.3"
1+
__version__ = "1.0.4"

0 commit comments

Comments
 (0)