From 13e1ac99690e62594dd7923c8eeb81c85a682334 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Tue, 10 Dec 2024 03:06:17 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202024.8.0=20=E2=86=92=202024.9?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- Cargo.toml | 2 +- crates/core/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 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1e31e2da..3bf0af0c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2024.8.0 +current_version = 2024.9.0 commit = True tag = True tag_name = {new_version} diff --git a/Cargo.toml b/Cargo.toml index dd6c1f8d..51a0232a 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 = "2024.8.0" +version = "2024.9.0" [profile.release] lto = true diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 93e09e83..79df9ba4 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -36,7 +36,7 @@ webgpu-compute = ["bytemuck", "pollster", "wgpu"] allocation-counter = { version = "0", optional = true } bytemuck = { version = "1", optional = true } pollster = { version = "0", optional = true } -svgplot = { version = "2024.8.0", path = "../svgplot", optional = true } +svgplot = { version = "2024.9.0", path = "../svgplot", optional = true } wgpu = { version = "23", optional = true } [dev-dependencies] diff --git a/crates/core/MANPAGE.md b/crates/core/MANPAGE.md index 6b1d16c6..3d0a7a1a 100644 --- a/crates/core/MANPAGE.md +++ b/crates/core/MANPAGE.md @@ -1,4 +1,4 @@ -% ADVENT-OF-CODE(1) Version 2024.8.0 +% ADVENT-OF-CODE(1) Version 2024.9.0 NAME ==== diff --git a/crates/java/README.md b/crates/java/README.md index af79c434..b1254112 100644 --- a/crates/java/README.md +++ b/crates/java/README.md @@ -15,7 +15,7 @@ To add a dependency using Maven: net.fornwall aoc - 2024.8.0 + 2024.9.0 ``` @@ -23,7 +23,7 @@ To add a dependency using Gradle: ```gradle dependencies { - implementation 'net.fornwall:aoc:2024.8.0' + implementation 'net.fornwall:aoc:2024.9.0' } ``` diff --git a/crates/java/java-src/build.gradle b/crates/java/java-src/build.gradle index 92df0117..f43bed9c 100644 --- a/crates/java/java-src/build.gradle +++ b/crates/java/java-src/build.gradle @@ -6,7 +6,7 @@ plugins { } group = "net.fornwall" -version = "2024.8.0" +version = "2024.9.0" repositories { mavenCentral() diff --git a/crates/python/setup.py b/crates/python/setup.py index 07f71409..acbf3210 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="2024.8.0", + version="2024.9.0", rust_extensions=[ RustExtension( "advent_of_code", binding=Binding.PyO3, strip=Strip.All, py_limited_api=True