Skip to content

Commit

Permalink
Merge branch 'release/1.1.0-alpha.10'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed May 20, 2024
2 parents 5fb3088 + 88be5ce commit e199ea7
Show file tree
Hide file tree
Showing 9 changed files with 512 additions and 433 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/git-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [1.1.0-alpha.10] - 2024-05-20

### Miscellaneous Tasks

- Update Nouns GraphQL url in `wrangler.toml`

## [1.1.0-alpha.9] - 2024-05-07

### Bug Fixes
Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
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."
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dev": "wrangler dev"
},
"devDependencies": {
"wrangler": "3.53.1"
"wrangler": "3.57.0"
},
"resolutions": {
"undici": ">=5.28.4"
Expand Down
Loading

0 comments on commit e199ea7

Please sign in to comment.