Skip to content

Commit

Permalink
chore(main): release 3.4.0
Browse files Browse the repository at this point in the history
Merge pull request #29 from MaxG87/release-please--branches--main
  • Loading branch information
MaxG87 authored Dec 22, 2023
2 parents dd787ea + e3dc2fb commit 66393d7
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [3.4.0](https://github.com/MaxG87/ButterBackup/compare/v3.3.2...v3.4.0) (2023-12-22)


### Features

* Erweitere Unterstützung auf Python 3.12 ([26b59c5](https://github.com/MaxG87/ButterBackup/commit/26b59c5156e218f9c8fc492ad402813747b1c2fa))


### Dependencies

* Hebe Version zweier Abhängigkeiten ([ef58a1e](https://github.com/MaxG87/ButterBackup/commit/ef58a1ee849694c1fef1f608046589b0453a39ff))


### Documentation

* Behebe kleinen Fehler in CHANGELOG ([31b0f7f](https://github.com/MaxG87/ButterBackup/commit/31b0f7f65fa990412706154bbf69908757c3dd80))

## [3.3.2](https://github.com/MaxG87/ButterBackup/compare/v3.3.1...v3.3.2) (2023-12-15)


Expand Down
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ DOCKER_TEST_TAG = $(SERVICE_LC)-$(SERVICE_ID_SHORT).test
CACHEBASE ?= ~/.cache/$(SERVICE).make-cache/
CACHEDIR = $(CACHEBASE)/$(SERVICE_ID_FULL)

# $(CACHEDIR)/run-arch-tests, $(CACHEDIR)/run-python3.8-tests, ...
DOCKER_TESTS_TARGETS := $(addsuffix -tests, $(addprefix $(CACHEDIR)/run-,$(ALL_DOCKER_FILES)))
# run-arch-tests, run-python3.8-tests, ...
DOCKER_TESTS := $(addsuffix -tests, $(addprefix run-,$(ALL_DOCKER_FILES)))

.SECONDARY: # Do not remove intermediate files. We need them for caching!

Expand All @@ -29,7 +29,9 @@ check-linters: | $(CACHEDIR)/check-linters
.PHONY: run-tests
run-tests: run-docker-tests | run-undockered-tests
.PHONY: run-docker-tests
run-docker-tests: | $(DOCKER_TESTS_TARGETS)
run-docker-tests: | $(DOCKER_TESTS)
.PHONY: $(DOCKER_TESTS)
run-%-tests: | $(CACHEDIR)/run-%-tests
.PHONY: run-undockered-tests
run-undockered-tests: | $(CACHEDIR)/run-undockered-tests
.PHONY: get-service-id
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "butter-backup"
version = "3.3.2"
version = "3.4.0"
description = "Vollverschlüsselte, pseudoinkrementelle Sicherungskopien leicht gemacht"
authors = ["Max Görner <max@familie-goerner.eu>"]
license = "GPL-3.0-or-later"
Expand Down

0 comments on commit 66393d7

Please sign in to comment.