Private
Public Access
1
0

set version to 2.0.0-rc.1, update scripts

This commit is contained in:
2026-05-24 12:55:53 +02:00
parent a87825df6d
commit b3b262b208
5 changed files with 20 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
{ {
"total": 656662, "total": 658541,
"sessions": [ "sessions": [
{ {
"begin": "2026-01-09T17:26:02+01:00", "begin": "2026-01-09T17:26:02+01:00",
@@ -1500,6 +1500,16 @@
"begin": "2026-05-24T08:51:27+02:00", "begin": "2026-05-24T08:51:27+02:00",
"end": "2026-05-24T10:42:30+02:00", "end": "2026-05-24T10:42:30+02:00",
"duration": 6662 "duration": 6662
},
{
"begin": "2026-05-24T10:42:30+02:00",
"end": "2026-05-24T10:45:32+02:00",
"duration": 181
},
{
"begin": "2026-05-24T10:45:43+02:00",
"end": "2026-05-24T11:14:02+02:00",
"duration": 1698
} }
] ]
} }

View File

@@ -7,7 +7,7 @@
"OrekiWoof" "OrekiWoof"
], ],
"description": "Beehive with 8 slots for honey frames. Boosts your plants.", "description": "Beehive with 8 slots for honey frames. Boosts your plants.",
"version": "2.0.0-dev.7", "version": "2.0.0-rc.1",
"dependencies": { "dependencies": {
"game": "1.21.0" "game": "1.21.0"
} }

View File

@@ -7,7 +7,7 @@
"OrekiWoof" "OrekiWoof"
], ],
"description": "Cute immersive roaming bees. Now on vanilla skeps and other mods' hives.", "description": "Cute immersive roaming bees. Now on vanilla skeps and other mods' hives.",
"version": "2.0.0-dev.7", "version": "2.0.0-rc.1",
"dependencies": { "dependencies": {
"game": "1.21.0" "game": "1.21.0"
} }

View File

@@ -1 +1,2 @@
dotnet run --project ./ZZCakeBuild/OrekiWoofsBeehivesCakeBuild.csproj -- "$@" dotnet run --project ./ZZCakeBuild/OrekiWoofsBeehivesCakeBuild.csproj -- "$@"
dotnet run --project ./RoamingBees/ZZCakeBuild/RoamingBeesCakeBuild.csproj -- "$@" && cp ./RoamingBees/Releases/* ./Releases

6
printLatestCommits.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
script_dir="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
count="${1:-10}"
git -C "$script_dir" log -n "$count" --pretty=format:%s | awk '{ lines[NR] = $0 } END { for (i = NR; i >= 1; i--) print lines[i] }'