diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6a27c07c..c58a4eae 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2024.18.0 +current_version = 2024.19.0 commit = True tag = True tag_name = {new_version} diff --git a/Cargo.toml b/Cargo.toml index 652603d9..6488d3e4 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.18.0" +version = "2024.19.0" [profile.release] lto = true diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index ce4c82d4..df0c8a97 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.18.0", path = "../svgplot", optional = true } +svgplot = { version = "2024.19.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 1a473770..600e98aa 100644 --- a/crates/core/MANPAGE.md +++ b/crates/core/MANPAGE.md @@ -1,4 +1,4 @@ -% ADVENT-OF-CODE(1) Version 2024.18.0 +% ADVENT-OF-CODE(1) Version 2024.19.0 NAME ==== diff --git a/crates/java/README.md b/crates/java/README.md index 1dbec060..64e3d6c3 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.18.0 + 2024.19.0 ``` @@ -23,7 +23,7 @@ To add a dependency using Gradle: ```gradle dependencies { - implementation 'net.fornwall:aoc:2024.18.0' + implementation 'net.fornwall:aoc:2024.19.0' } ``` diff --git a/crates/java/java-src/build.gradle b/crates/java/java-src/build.gradle index b4fcc4e9..7719c245 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.18.0" +version = "2024.19.0" repositories { mavenCentral() diff --git a/crates/python/setup.py b/crates/python/setup.py index f7b5e24e..12bb32f4 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.18.0", + version="2024.19.0", rust_extensions=[ RustExtension( "advent_of_code", binding=Binding.PyO3, strip=Strip.All, py_limited_api=True