Skip to content
This repository was archived by the owner on Oct 2, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,19 +128,19 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: sprig_unix_amd64.deb
path: installer-scripts/unix/sprig_0.0.11_amd64.deb
path: installer-scripts/unix/sprig_0.0.12_amd64.deb
- uses: actions/upload-artifact@v4
with:
name: sprig_unix_amd64.rpm
path: installer-scripts/unix/sprig-0.0.11-1.x86_64.rpm
path: installer-scripts/unix/sprig-0.0.12-1.x86_64.rpm
- uses: actions/upload-artifact@v4
with:
name: sprig_unix_amd64.apk
path: installer-scripts/unix/sprig_0.0.11_x86_64.apk
path: installer-scripts/unix/sprig_0.0.12_x86_64.apk
- uses: actions/upload-artifact@v4
with:
name: sprig_unix_amd64.pkg.tar.zst
path: installer-scripts/unix/sprig-0.0.11-1-x86_64.pkg.tar.zst
path: installer-scripts/unix/sprig-0.0.12-1-x86_64.pkg.tar.zst
- uses: actions/upload-artifact@v4
with:
name: sprig-target-directory-unix
Expand Down
26 changes: 13 additions & 13 deletions 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 @@ -32,7 +32,7 @@ authors = ["Cynthia <cynthia@coan.dev>"]
edition = "2024"
license = "MIT"
repository = "https://github.com/rem-verse/sprig"
version = "0.0.11"
version = "0.0.12"

[profile.release]
codegen-units = 1
Expand Down
2 changes: 1 addition & 1 deletion installer-scripts/osx/distribution.arm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
<choice id="sprig" title="sprig">
<pkg-ref id="sprig.pkg"/>
</choice>
<pkg-ref id="sprig.pkg" version="0.0.11" />
<pkg-ref id="sprig.pkg" version="0.0.12" />
</installer-gui-script>
2 changes: 1 addition & 1 deletion installer-scripts/osx/distribution.intel.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
<choice id="sprig" title="sprig">
<pkg-ref id="sprig.pkg"/>
</choice>
<pkg-ref id="sprig.pkg" version="0.0.11" />
<pkg-ref id="sprig.pkg" version="0.0.12" />
</installer-gui-script>
2 changes: 1 addition & 1 deletion installer-scripts/osx/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cp ../../../LICENSE ./
cd ../
echo "Done! Building...."

pkgbuild --root ./working-dir/ --identifier "dev.rem-verse.sprig" --version "0.0.11" --install-location "/usr/local/bin" sprig.pkg
pkgbuild --root ./working-dir/ --identifier "dev.rem-verse.sprig" --version "0.0.12" --install-location "/usr/local/bin" sprig.pkg

echo "Done! Preparing Distribution Directory..."
mkdir working-dir-pkg
Expand Down
2 changes: 1 addition & 1 deletion installer-scripts/unix/nfpm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ homepage: "https://github.com/rem-verse/sprig"
license: "MIT"
maintainer: "Cynthia <cynthia@corp.rem-verse.email>"
vendor: "RemVerse"
version: "v0.0.11"
version: "v0.0.12"

arch: "amd64"
platform: "linux"
Expand Down
2 changes: 1 addition & 1 deletion installer-scripts/win/sprig.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Package Manufacturer="RemVerse"
Name="Sprig"
Language="1033"
Version="0.0.11"
Version="0.0.12"
UpgradeCode="f25b6ffc-5890-42f2-a1c1-0f7dd4a9ee11">

<ui:WixUI Id="WixUI_Minimal" InstallDirectory="INSTALLFOLDER" />
Expand Down
1 change: 1 addition & 0 deletions pkg/cat-dev/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
// modules themselves.
clippy::module_name_repetitions,
)]
#![cfg_attr(docsrs, feature(doc_cfg))]

pub mod errors;
pub mod fsemul;
Expand Down
Loading