-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/1.1.0-alpha.10'
- Loading branch information
Showing
9 changed files
with
512 additions
and
433 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ jobs: | |
|
||
steps: # The sequence of tasks that make up a job. | ||
- name: Checking out repository code | ||
uses: actions/[email protected].4 # Action for checking out a repo. | ||
uses: actions/[email protected].6 # Action for checking out a repo. | ||
|
||
# Cache dependencies to speed up builds | ||
- name: Cache cargo dependencies | ||
|
@@ -85,7 +85,7 @@ jobs: | |
steps: | ||
# Checkout the repository code | ||
- name: Checkout code | ||
uses: actions/[email protected].4 | ||
uses: actions/[email protected].6 | ||
with: | ||
fetch-depth: 0 # Fetches all history for all branches and tags | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,12 +16,12 @@ jobs: | |
|
||
# Check out current repository | ||
- name: Fetch Sources | ||
uses: actions/[email protected].4 | ||
uses: actions/[email protected].6 | ||
with: | ||
ref: ${{ github.event.release.tag_name }} | ||
|
||
- name: Install pnpm package manager | ||
uses: pnpm/action-setup@v3.0.0 | ||
uses: pnpm/action-setup@v4.0.0 | ||
with: | ||
version: latest | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
steps: | ||
# Checks out the repository code under $GITHUB_WORKSPACE, so the job can access it | ||
- name: Checkout Repository Code | ||
uses: actions/[email protected].4 | ||
uses: actions/[email protected].6 | ||
|
||
# This step uses the Git Flow Action to create PRs based on branch types | ||
- name: Execute Git Flow Action | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "lilnouns-click" | ||
version = "1.1.0-alpha.9" | ||
version = "1.1.0-alpha.10" | ||
authors = ["Milad Nekofar <[email protected]>"] | ||
edition = "2021" | ||
description = "A Nounish URL shortener for LilNouns DAO." | ||
|
@@ -23,11 +23,11 @@ log = { version = "0.4.21", features = [] } | |
percent-encoding = "2.3.1" | ||
regex = "1.10.4" | ||
reqwest = "0.11.26" | ||
serde = { version = "1.0.200", features = ["derive"] } | ||
serde = { version = "1.0.202", features = ["derive"] } | ||
sqids = "0.4.1" | ||
unidecode = "0.3.0" | ||
url = "2.5.0" | ||
worker = "0.2.0" | ||
worker = "0.3.0" | ||
|
||
[profile.release] | ||
lto = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.