Skip to content

Commit

Permalink
Merge branch 'release/1.1.0-alpha.23'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Jul 28, 2024
2 parents 9a73667 + 0cfbb70 commit 4aeb40c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
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.23] - 2024-07-28

### Bug Fixes

- Update URL for redirection

## [1.1.0-alpha.22] - 2024-07-28

### Bug Fixes
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
@@ -1,6 +1,6 @@
[package]
name = "lilnouns-click"
version = "1.1.0-alpha.22"
version = "1.1.0-alpha.23"
authors = ["Milad Nekofar <milad@nekofar.com>"]
edition = "2021"
description = "A Nounish URL shortener for LilNouns DAO."
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ async fn main(req: Request, env: Env, _ctx: Context) -> Result<Response> {
router
.get("/", |_, _| {
Response::redirect(Url::parse(
"https://lilnouns.wtf?utm_source=farcaster&utm_medium=social",
"https://lilnouns.camp?utm_source=farcaster&utm_medium=social",
)?)
})
.get_async("/:sqid", routes::handle_redirect)
Expand Down

0 comments on commit 4aeb40c

Please sign in to comment.