Skip to content

Commit 628b6ba

Browse files
authored
Merge pull request seeraven#61 from seeraven/feature/bump-to-1.0.20
feature: Update version for next upcoming release v1.0.20.
2 parents 9be70a2 + da0e06e commit 628b6ba

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# SETTINGS
1414
# ----------------------------------------------------------------------------
1515
APP_NAME := gitcache
16-
APP_VERSION := 1.0.19
16+
APP_VERSION := 1.0.20
1717

1818
ALL_TARGET := check-style.venv
1919
SCRIPT := src/gitcache

doc/source/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ So all you have to do is to download the latest executable from the release page
1414
|release_url| and copy it to a location of your choice, for example
1515
:code:`/usr/local/bin`.
1616

17-
$ wget https://github.com/seeraven/gitcache/releases/download/v1.0.19/gitcache_v1.0.19_Ubuntu22.04_amd64
18-
$ mv gitcache_v1.0.19_Ubuntu22.04_amd64 /usr/local/bin/gitcache
17+
$ wget https://github.com/seeraven/gitcache/releases/download/v1.0.20/gitcache_v1.0.20_Ubuntu22.04_amd64
18+
$ mv gitcache_v1.0.20_Ubuntu22.04_amd64 /usr/local/bin/gitcache
1919
$ chmod +x /usr/local/bin/gitcache
2020
$ ln -s /usr/local/bin/gitcache /usr/local/bin/git
2121

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = 'setuptools.build_meta'
88

99
[project]
1010
name = "gitcache"
11-
version = "1.0.19"
11+
version = "1.0.20"
1212
authors = [{name = "Clemens Rabe", email = "[email protected]"}]
1313
description = "Local cache for git repositories to speed up working with large repositories and multiple clones."
1414
readme = "README.md"

src/git_cache/git_cache_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
it acts as a wrapper for the git command and intercepts the commands required
5454
for the mirror handling.
5555
"""
56-
GITCACHE_VERSION = "1.0.19"
56+
GITCACHE_VERSION = "1.0.20"
5757

5858

5959
# -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)