From f0b837e5e0d087201feae8cca41a60a653654ef1 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Fri, 29 Nov 2024 00:15:25 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202022.0.69=20=E2=86=92=202022.?= =?UTF-8?q?0.70?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- Cargo.toml | 2 +- crates/core/MANPAGE.md | 2 +- crates/java/README.md | 4 ++-- crates/java/java-src/build.gradle | 2 +- crates/python/setup.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1229303f..8f911d59 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2022.0.69 +current_version = 2022.0.70 commit = True tag = True tag_name = {new_version} diff --git a/Cargo.toml b/Cargo.toml index 534acf5b..cf51c20e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://github.com/fornwall/advent-of-code" license = "MIT" repository = "https://github.com/fornwall/advent-of-code" rust-version = "1.83.0" -version = "2022.0.69" +version = "2022.0.70" [profile.release] lto = true diff --git a/crates/core/MANPAGE.md b/crates/core/MANPAGE.md index 9dc0ef87..4c275a65 100644 --- a/crates/core/MANPAGE.md +++ b/crates/core/MANPAGE.md @@ -1,4 +1,4 @@ -% ADVENT-OF-CODE(1) Version 2022.0.69 +% ADVENT-OF-CODE(1) Version 2022.0.70 NAME ==== diff --git a/crates/java/README.md b/crates/java/README.md index 32d83b82..01619afd 100644 --- a/crates/java/README.md +++ b/crates/java/README.md @@ -15,7 +15,7 @@ To add a dependency using Maven: net.fornwall aoc - 2022.0.69 + 2022.0.70 ``` @@ -23,7 +23,7 @@ To add a dependency using Gradle: ```gradle dependencies { - implementation 'net.fornwall:aoc:2022.0.69' + implementation 'net.fornwall:aoc:2022.0.70' } ``` diff --git a/crates/java/java-src/build.gradle b/crates/java/java-src/build.gradle index 8f46b4af..d429cdbf 100644 --- a/crates/java/java-src/build.gradle +++ b/crates/java/java-src/build.gradle @@ -6,7 +6,7 @@ plugins { } group = "net.fornwall" -version = "2022.0.69" +version = "2022.0.70" repositories { mavenCentral() diff --git a/crates/python/setup.py b/crates/python/setup.py index 4d361405..02b071ff 100644 --- a/crates/python/setup.py +++ b/crates/python/setup.py @@ -13,7 +13,7 @@ url="https://github.com/fornwall/advent-of-code", long_description=long_description, long_description_content_type="text/markdown", - version="2022.0.69", + version="2022.0.70", rust_extensions=[ RustExtension( "advent_of_code", binding=Binding.PyO3, strip=Strip.All, py_limited_api=True