Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump syncthing to v1.27.9 #21

Merged
merged 2 commits into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v1.27.9 (2024-07-04)

### Feat

- **core**: bump syncthing to 1.27.9

## v1.27.6 (2024-04-11)

### Feat
Expand Down
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
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "docker-syncthing"
version = "1.27.6"
version = "1.27.9"
description = "Syncthing as a container using Docker"
authors = [
{ name = "BESANCON Vincent", email = "[email protected]" }
Expand Down Expand Up @@ -29,7 +29,7 @@ packages = ["src/docker_syncthing"]

[tool.commitizen]
name = "cz_conventional_commits"
version = "1.27.6"
version = "1.27.9"
tag_format = "v$version"
version_files = [
"pyproject.toml:version"
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# features: []
# all-features: false
# with-sources: false
# generate-hashes: false

-e file:.
argcomplete==3.2.3
Expand Down
1 change: 1 addition & 0 deletions requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# features: []
# all-features: false
# with-sources: false
# generate-hashes: false

-e file:.
argcomplete==3.2.3
Expand Down
Loading