Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
Release 1.0.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudhead committed Mar 26, 2024
1 parent aaea06d commit 081af03
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Get tags
run: git fetch --tags origin
- name: Configure build cache
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -59,6 +61,8 @@ jobs:
- x86_64-apple-darwin
steps:
- uses: actions/checkout@v4
- name: Get tags
run: git fetch --tags origin
- name: Configure build cache
uses: actions/cache@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
.map(|last| format!("{}-dev", last.trim()))
}
// If there are no tags found, we'll just call this a pre-release.
.unwrap_or(String::from("pre-release"));
.unwrap_or(String::from("1.0.0-rc.1"));

// Set a build-time `GIT_COMMIT_TIME` env var which includes the commit time.
let commit_time = Command::new("git")
Expand Down

0 comments on commit 081af03

Please sign in to comment.