Skip to content

Commit

Permalink
Bump version: 2024.1.0 → 2024.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fornwall committed Dec 1, 2024
1 parent faabe84 commit caf829a
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2024.1.0
current_version = 2024.2.0
commit = True
tag = True
tag_name = {new_version}
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.0"
version = "2024.2.0"

[profile.release]
lto = true
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.0", path = "../svgplot", optional = true }
svgplot = { version = "2024.2.0", path = "../svgplot", optional = true }
wgpu = { version = "23", optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/core/MANPAGE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% ADVENT-OF-CODE(1) Version 2024.1.0
% ADVENT-OF-CODE(1) Version 2024.2.0

NAME
====
Expand Down
4 changes: 2 additions & 2 deletions crates/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ To add a dependency using Maven:
<dependency>
<groupId>net.fornwall</groupId>
<artifactId>aoc</artifactId>
<version>2024.1.0</version>
<version>2024.2.0</version>
</dependency>
```

To add a dependency using Gradle:

```gradle
dependencies {
implementation 'net.fornwall:aoc:2024.1.0'
implementation 'net.fornwall:aoc:2024.2.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion crates/java/java-src/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "net.fornwall"
version = "2024.1.0"
version = "2024.2.0"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion crates/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
url="https://github.com/fornwall/advent-of-code",
long_description=long_description,
long_description_content_type="text/markdown",
version="2024.1.0",
version="2024.2.0",
rust_extensions=[
RustExtension(
"advent_of_code", binding=Binding.PyO3, strip=Strip.All, py_limited_api=True
Expand Down

0 comments on commit caf829a

Please sign in to comment.