Skip to content

Commit d15b2f2

Browse files
git-jock-botGavinF17GitHub
authored
Released 0.2.1 to PyPI
* 87 add release action (#93) * #87 Started action * #87 Updated release action * #94 Readded version string in setup (#95) * Released 0.1.0b28 to Test PyPI Co-authored-by: GitHub <github@users.noreply.github.com> * #87 Updated needed job ID (#97) * #87 Removed repo url from pypi release (#98) * #87 Removed repo url from pypi release * #87 [skip-beta] * Released 0.1.0 to PyPI Co-authored-by: GitHub <github@users.noreply.github.com> * #87 Changed PR base; added fetch before checkout (#100) * Released 0.2.0b1 to Test PyPI Co-authored-by: GitHub <github@users.noreply.github.com> * #87 Updated set_version script (#102) * Released 0.2.0b2 to Test PyPI Co-authored-by: GitHub <github@users.noreply.github.com> * #87 Wrapped release string (#104) * Released 0.2.0b3 to Test PyPI Co-authored-by: GitHub <github@users.noreply.github.com> * #58 add install script (#107) * #58 Added initial script * #58 Added tidy up and echos * #58 Added script to README * #58 Move sudo into script and added warning * #58 Changed to download to /usr/local/bin & updated README usage * #58 Updated README with warning of sudo usage * #58 [skip-beta] * #87 add release action (#109) * #87 Added README badges * #87 Updated PyPI badge * #87 Added initial CHANGELOG and updated CONTRIBUTING to reflect this * #87 [skip-beta] * #87 Updated README * 110 store repos in config (#114) * #110 Added basic config usage * #110 Updated path resolution and config usage * #110 Fixed test_cli * #110 WIP Fixing test_git * #110 Fixed test_git * #110 Refactored tests * #110 Refactored and added tests * Released 0.2.0b4 to Test PyPI Co-authored-by: GitHub <github@users.noreply.github.com> * 113 group config repos (#116) * #113 WIP Started group implementation * #113 Now working with groups * #113 Fixed test_cli * #113 Fixed test_git * #113 Fixed existing load_config test * #113 Added config tests * #113 Updated CHANGELOG, README and pre-PR tidy * Released 0.2.0b5 to Test PyPI Co-authored-by: GitHub <github@users.noreply.github.com> * #121 Correct Usage (#122) * Released 0.3.0b1 to Test PyPI Co-authored-by: GitHub <github@users.noreply.github.com> * #108 Added __init__ to release commits (#124) * #108 Added __init__ to release commits * #108 Added --service to coveralls * Released 0.3.0b2 to Test PyPI Co-authored-by: GitHub <github@users.noreply.github.com> * Released 0.2.1 to PyPI Co-authored-by: Gavin Fenton <gavin_fenton@msn.com> Co-authored-by: GitHub <github@users.noreply.github.com>
1 parent 2cf107b commit d15b2f2

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/release-alpha.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ jobs:
5252
run: |
5353
git config --global user.name 'GitHub'
5454
git config --global user.email 'github@users.noreply.github.com'
55-
git add ./setup.py ./pyproject.toml
55+
git add ./setup.py ./pyproject.toml ./jock/__init__.py
5656
git commit -m "Released $NEW_VERSION to Test PyPI"
5757
git push

.github/workflows/release-beta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
git config --global user.name 'GitHub'
5050
git config --global user.email 'github@users.noreply.github.com'
5151
git checkout -b release-$NEW_VERSION
52-
git add ./setup.py ./pyproject.toml
52+
git add ./setup.py ./pyproject.toml ./jock/__init__.py
5353
git commit -m "$COMMIT_MESSAGE"
5454
git push --set-upstream origin release-$NEW_VERSION
5555
echo "CURRENT_REF=$(git show-ref --hash --head HEAD)" >> $GITHUB_ENV

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
git config --global user.name 'GitHub'
5454
git config --global user.email 'github@users.noreply.github.com'
5555
git checkout -b release-$NEW_VERSION
56-
git add ./setup.py ./pyproject.toml
56+
git add ./setup.py ./pyproject.toml ./jock/__init__.py
5757
git commit -m "$COMMIT_MESSAGE"
5858
git push --set-upstream origin release-$NEW_VERSION
5959
echo "CURRENT_REF=$(git show-ref --hash --head HEAD)" >> $GITHUB_ENV

.github/workflows/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
COVERALLS_PARALLEL: true
3333
run: |
3434
pytest --cov=jock
35-
coveralls
35+
coveralls --service=github
3636
coveralls:
3737
name: Finish Coveralls
3838
needs: validate_python

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ repositories:
8181
location: ../users
8282

8383
groups:
84-
- name: services
84+
services:
8585
repositories:
8686
- auth-service
8787
- user-service

jock/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.0a19'
1+
__version__ = '0.2.1'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "jock"
33
# This will be updated automatically
4-
version = "0.2.0"
4+
version = "0.2.1"
55
description = "Group and manage multiple git repositories"
66
authors = [
77
"Gavin Fenton <contact@gavinfenton.com>"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
setup(
88
name='git-jock',
99
# This will be updated automatically
10-
version='0.2.0',
10+
version='0.2.1',
1111
author='Gavin Fenton',
1212
author_email='contact@gavinfenton.com',
1313
description='Git helper for multi-repository management',

0 commit comments

Comments
 (0)