Skip to content

Commit

Permalink
0.16.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ceejbot committed Feb 16, 2024
1 parent 94b2a0b commit 44fe2c0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if(PROJECT_SOURCE_DIR STREQUAL PROJECT_BINARY_DIR)
endif()

set(NAME "SoulsyHUD")
set(VERSION 0.16.6.0)
set(VERSION 0.16.7.0)

project(
${NAME}
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "GPL-3.0"
name = "soulsy"
readme = "README.md"
rust-version = "1.71.1"
version = "0.16.6"
version = "0.16.7"

[lib]
crate-type = ["staticlib"]
Expand Down
Binary file modified installer/fomod/info.xml
Binary file not shown.
7 changes: 4 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,12 @@ sources:
[unix]
tag VERSION:
#!/usr/bin/env bash
set -e
sed="sed"
if [ -e $(which gsed) ]; then
ignored=$(which gsed)
if [ $? == 0 ]; then
sed="gsed"
fi
set -e
tomato set package.version {{VERSION}} Cargo.toml
# update the version header for the plugin
$sed -i -e 's/set(VERSION [0-9][0-9]*\.[0-9]*\.[0-9]*\(\.[0-9]*\)/set(VERSION {{VERSION}}\1/' CMakeLists.txt
Expand All @@ -82,7 +83,7 @@ tag VERSION:
$sed -i -e 's/<Version>[0-9][0-9]*\.[0-9]*\.[0-9]*<\/Version>/<Version>{{VERSION}}<\/Version>/' installer/fomod/info_utf8.xml
iconv -f UTF-8 -t UTF-16LE installer/fomod/info_utf8.xml >installer/fomod/info.xml
rm installer/fomod/info_utf8.xml
git commit CMakeLists.txt Cargo.toml vcpkg.json -m "v{{VERSION}}"
git commit CMakeLists.txt Cargo.toml Cargo.lock installer/fomod/info.xml vcpkg.json -m "v{{VERSION}}"
git tag "v{{VERSION}}"
echo "Release tagged for version v{{VERSION}}"
Expand Down
7 changes: 5 additions & 2 deletions vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{
"name": "soulsyhud",
"version-string": "0.16.6",
"version-string": "0.16.7",
"description": "hotkey and hud for Skyrim AE",
"homepage": "https://github.com/ceejbot/soulsy",
"license": "GPL-2.0-or-later",
"dependencies": [
{
"name": "imgui",
"features": ["dx11-binding", "win32-binding"]
"features": [
"dx11-binding",
"win32-binding"
]
},
"fmt",
"spdlog",
Expand Down

0 comments on commit 44fe2c0

Please sign in to comment.