Skip to content

Commit

Permalink
Merge branch 'release/1.1.0-alpha.36'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Dec 7, 2024
2 parents 2296abb + fea2102 commit 9ef4abc
Show file tree
Hide file tree
Showing 12 changed files with 402 additions and 481 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:

# Generate a changelog for the new release using Git
- name: Generate a changelog
uses: orhun/git-cliff-action@v4.4.1
uses: orhun/git-cliff-action@v4.4.2
id: git-cliff
with:
config: cliff.toml # The configuration file for git-cliff
Expand Down
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

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

## [1.1.0-alpha.36] - 2024-12-07

### Features

- Add `OpenGraphMeta` struct for HTML meta tags

### Bug Fixes

- Correct typo in `farcaster_meta` HTML tag

### Refactor

- Remove `handle_mini_app` function
- Rename `routes` module to `handlers`
- Rename `utils` module to `helpers`
- Simplify SQID handling logic
- Rename `handle_og_image` to `generate_og_image`
- Rename functions for clarity

### Styling

- Remove redundant comments

## [1.1.0-alpha.35] - 2024-12-04

### 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.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "lilnouns-click"
version = "1.1.0-alpha.35"
version = "1.1.0-alpha.36"
authors = ["Milad Nekofar <milad@nekofar.com>"]
edition = "2021"
description = "A Nounish URL shortener for LilNouns DAO."
repository = "https://github.com/lilnouns/lilnouns-click"
license = "Apache-2.0"
include = ["*.graphql"]
rust-version = "1.83.0"

# https://github.com/rustwasm/wasm-pack/issues/1247
[package.metadata.wasm-pack.profile.release]
Expand Down
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "lilnouns-click",
"private": true,
"scripts": {
"deploy": "wrangler deploy --env dev",
"dev": "wrangler dev"
},
"devDependencies": {
"wrangler": "3.92.0"
},
"name": "lilnouns-click",
"private": true,
"scripts": {
"deploy": "wrangler deploy --env dev",
"dev": "wrangler dev"
},
"devDependencies": {
"wrangler": "3.92.0"
},
"resolutions": {
"undici": ">=5.28.4"
"undici": ">=5.28.4",
"cookie": ">=0.7.0"
}
}
11 changes: 6 additions & 5 deletions pnpm-lock.yaml

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

Loading

0 comments on commit 9ef4abc

Please sign in to comment.