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

Commit

Permalink
Merge branch 'release/1.2.44'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Jul 16, 2024
2 parents f75909e + f12324a commit b367a26
Show file tree
Hide file tree
Showing 7 changed files with 744 additions and 614 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4.1.6
uses: actions/checkout@v4.1.7

- uses: pnpm/action-setup@v4.0.0
name: Install pnpm
Expand All @@ -47,7 +47,7 @@ jobs:
${{ runner.os }}-pnpm-store-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.0.2
uses: actions/setup-node@v4.0.3
with:
cache: 'pnpm'
node-version: ${{ matrix.node-version }}
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/checkout@v4.1.6
uses: actions/checkout@v4.1.7

# This step uses the Git Flow Action to create PRs based on branch types
- name: Execute Git Flow Action
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
release_body: ${{ steps.release.outputs.RELEASE_BODY }}
steps:
- name: Checkout
uses: actions/checkout@v4.1.6
uses: actions/checkout@v4.1.7
with:
fetch-depth: 0

- name: Generate a changelog
uses: orhun/git-cliff-action@v3.0.2
uses: orhun/git-cliff-action@v3.2.0
id: git-cliff
with:
config: cliff.toml
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
contents: write
steps:
- name: Create the GitHub release
uses: softprops/action-gh-release@v2.0.5
uses: softprops/action-gh-release@v2.0.6
with:
body: ${{ needs.changelog.outputs.release_body }}
prerelease: ${{ contains(github.ref, '-rc') || contains(github.ref, '-beta') || contains(github.ref, '-alpha') }}
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.2.44] - 2024-07-16

### Miscellaneous Tasks

- Create new `FUNDING.json` file (#665)

## [1.2.42] - 2024-04-24

### Miscellaneous Tasks
Expand Down
7 changes: 7 additions & 0 deletions FUNDING.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"drips": {
"ethereum": {
"ownedBy": "0x9e0e9D25a5ED9bc773f91691f0b45599255257B1"
}
}
}
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lilnouns-pics",
"version": "1.2.43",
"version": "1.2.44",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -12,38 +12,38 @@
"wrangler": "wrangler pages dev out --compatibility-date=2023-07-24"
},
"dependencies": {
"@headlessui/react": "2.0.3",
"@heroicons/react": "2.1.3",
"@headlessui/react": "2.1.2",
"@heroicons/react": "2.1.5",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.7",
"clsx": "2.1.1",
"next": "14.2.3",
"next": "14.2.5",
"next-seo": "6.5.0",
"next-sitemap": "4.2.3",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20240512.0",
"@types/node": "20.12.12",
"@types/react": "18.3.2",
"@cloudflare/workers-types": "4.20240712.0",
"@types/node": "20.14.10",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.19",
"eslint": "9.3.0",
"eslint-config-next": "14.2.3",
"eslint": "9.7.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-lingui": "0.3.0",
"eslint-plugin-next": "0.0.0",
"eslint-plugin-next-on-pages": "1.11.3",
"eslint-plugin-tailwindcss": "3.15.2",
"eslint-plugin-unicorn": "53.0.0",
"eslint-plugin-next-on-pages": "1.12.1",
"eslint-plugin-tailwindcss": "3.17.4",
"eslint-plugin-unicorn": "54.0.0",
"incstr": "1.2.3",
"mangle-css-class-webpack-plugin": "5.1.0",
"postcss": "8.4.38",
"postcss": "8.4.39",
"serve": "14.2.3",
"tailwindcss": "3.4.3",
"typescript": "5.4.5",
"wrangler": "3.57.0"
"tailwindcss": "3.4.4",
"typescript": "5.5.3",
"wrangler": "3.64.0"
},
"resolutions": {
"undici": ">=6.11.1"
Expand Down
Loading

0 comments on commit b367a26

Please sign in to comment.