Skip to content

Commit

Permalink
feat(core): bump syncthing to 1.27.9
Browse files Browse the repository at this point in the history
  • Loading branch information
bigbrozer committed Jul 4, 2024
1 parent d24ef7d commit 67c3f0c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ENV SYNCTHING_USER="syncthing" \

ENV SYNCTHING_GPG_KEY1="49F5AEC0BCE524C7" \
SYNCTHING_GPG_KEY2="D26E6ED000654A3E" \
SYNCTHING_VERSION="1.27.6" \
SYNCTHING_VERSION="1.27.9" \
SYNCTHING_ARCH="amd64"

RUN set -x \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ SHELL = /bin/bash
#
.PHONY: install
install:
@poetry install
@rye sync

.PHONY: tests
tests:
Expand Down
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Following arch are missing tests:
## Available image tags

* [nventiveux/syncthing](https://hub.docker.com/r/nventiveux/syncthing)
* `latest`, `v1.27.6` ([Dockerfile](./Dockerfile))
* `latest`, `v1.27.9` ([Dockerfile](./Dockerfile))

## Usage

Expand Down Expand Up @@ -89,8 +89,8 @@ docker run \

Pre-requisites:

* Python >=3.7
* [Pipenv](https://github.com/pypa/pipenv)
* Python >=3.11
* [Rye](https://rye.astral.sh/)
* make
* Bash >=4
* Git >=2.18
Expand All @@ -112,9 +112,11 @@ Commit changes and submit a **Pull Request**.
Bump the version using:

```shell
git switch -c release/next
make release version=<VERSION>
# Commit & pull request...
git commit -a -m "feat(core): bump syncthing to <VERSION>"
rye run cz bump --changelog <VERSION>
# Open a pull request
```

## References
Expand Down

0 comments on commit 67c3f0c

Please sign in to comment.