From 712e2452aeabdc6e7ccbd155be3b421a4ffb7d02 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Thu, 12 Dec 2024 22:31:24 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202024.11.0=20=E2=86=92=202024.?= =?UTF-8?q?12.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 6faecf83..772c2bdd 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2024.11.0 +current_version = 2024.12.0 commit = True tag = True tag_name = {new_version} diff --git a/Cargo.toml b/Cargo.toml index a239d10c..93df91e7 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.11.0" +version = "2024.12.0" [profile.release] lto = true diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index cf67b0a1..410bcd29 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.11.0", path = "../svgplot", optional = true } +svgplot = { version = "2024.12.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 9ed66187..67f8ec09 100644 --- a/crates/core/MANPAGE.md +++ b/crates/core/MANPAGE.md @@ -1,4 +1,4 @@ -% ADVENT-OF-CODE(1) Version 2024.11.0 +% ADVENT-OF-CODE(1) Version 2024.12.0 NAME ==== diff --git a/crates/java/README.md b/crates/java/README.md index 01912ccd..ed37ed65 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.11.0 + 2024.12.0 ``` @@ -23,7 +23,7 @@ To add a dependency using Gradle: ```gradle dependencies { - implementation 'net.fornwall:aoc:2024.11.0' + implementation 'net.fornwall:aoc:2024.12.0' } ``` diff --git a/crates/java/java-src/build.gradle b/crates/java/java-src/build.gradle index adaa3750..482cc9b4 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.11.0" +version = "2024.12.0" repositories { mavenCentral() diff --git a/crates/python/setup.py b/crates/python/setup.py index 0dc8eed0..afc33382 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.11.0", + version="2024.12.0", rust_extensions=[ RustExtension( "advent_of_code", binding=Binding.PyO3, strip=Strip.All, py_limited_api=True