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.0.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Jan 14, 2023
2 parents 95f6cb8 + 35a7444 commit 03fb526
Show file tree
Hide file tree
Showing 7 changed files with 746 additions and 435 deletions.
6 changes: 3 additions & 3 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@v3.1.0
uses: actions/checkout@v3.3.0

- uses: pnpm/action-setup@v2.2.4
name: Install pnpm
Expand All @@ -38,7 +38,7 @@ jobs:
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3.2.2
- uses: actions/cache@v3.2.3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
Expand All @@ -47,7 +47,7 @@ jobs:
${{ runner.os }}-pnpm-store-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.5.1
uses: actions/setup-node@v3.6.0
with:
cache: 'pnpm'
node-version: ${{ matrix.node-version }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pnpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.5.1
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -39,7 +39,7 @@ jobs:
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3.2.2
- uses: actions/cache@v3.2.3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
Expand All @@ -48,7 +48,7 @@ jobs:
${{ runner.os }}-pnpm-store-
- name: Checkout
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.3.0
with:
ref: ${{ github.event.pull_request.head.ref }}

Expand Down
4 changes: 2 additions & 2 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@v3.2.0
uses: actions/checkout@v3.3.0
with:
fetch-depth: 0

- name: Generate a changelog
uses: orhun/git-cliff-action@v2.0.1
uses: orhun/git-cliff-action@v2.0.3
id: git-cliff
with:
config: cliff.toml
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
enable-pre-post-scripts=true
auto-install-peers=true
save-prefix=''
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

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

## [1.0.5] - 2023-01-14

### <!-- 07 -->Continuous Integrations

- Bump actions/setup-node from 3.5.1 to 3.6.0
- Bump actions/checkout from 3.1.0 to 3.3.0
- Bump actions/cache from 3.2.2 to 3.2.3
- Bump orhun/git-cliff-action from 2.0.1 to 2.0.3

### <!-- 08 -->Miscellaneous Tasks

- Replace exact versions instead of carrot
- Update dependencies through `pnpm`
- Change `save-prefix` from carrot to exact version
- Bump next from 13.1.1 to 13.1.2
- Bump eslint-config-next from 13.1.1 to 13.1.2

## [1.0.4] - 2023-01-04

### <!-- 07 -->Continuous Integrations
Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lilnouns-pics",
"version": "1.0.4",
"version": "1.0.5",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -13,28 +13,28 @@
"export": "next export"
},
"dependencies": {
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^2.0.11",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"next": "13.1.1",
"next-seo": "^5.5.0",
"next-sitemap": "^3.1.22",
"@headlessui/react": "1.6.6",
"@heroicons/react": "2.0.11",
"@tailwindcss/aspect-ratio": "0.4.0",
"@tailwindcss/forms": "0.5.2",
"next": "13.1.2",
"next-seo": "5.5.0",
"next-sitemap": "3.1.22",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20221111.1",
"@cloudflare/workers-types": "4.20221111.1",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"autoprefixer": "^10.4.8",
"autoprefixer": "10.4.8",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"postcss": "^8.4.16",
"serve": "^14.0.1",
"tailwindcss": "^3.1.8",
"eslint-config-next": "13.1.2",
"postcss": "8.4.16",
"serve": "14.0.1",
"tailwindcss": "3.1.8",
"typescript": "4.9.4",
"wrangler": "^2.0.26"
"wrangler": "2.0.26"
}
}
Loading

0 comments on commit 03fb526

Please sign in to comment.