Skip to content

Commit cb8bcb4

Browse files
committed
v1.0.0
1 parent 1a2f176 commit cb8bcb4

5 files changed

Lines changed: 14 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [18.x]
17+
node-version: [20.x]
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: ${{ matrix.node-version }}
2525
- run: npm ci
@@ -29,7 +29,7 @@ jobs:
2929
needs: test
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333
- name: Get Version # Run the script that returns the version from `module.json`
3434
shell: bash
3535
id: get-version
@@ -78,4 +78,4 @@ jobs:
7878
url: 'https://api.foundryvtt.com/_api/packages/release_version'
7979
method: 'POST'
8080
customHeaders: '{"Content-Type": "application/json", "Authorization" : "${{ secrets.FOUNDRY_KEY }}"}'
81-
data: '{"dry_run": false, "id" : "notelicker", "release": {"version" : "${{ steps.get-version.outputs.release_version }}", "manifest": "https://github.com/${{ github.repository }}/releases/download/${{ steps.get-version.outputs.release_version }}/module.json", "notes" : "https://github.com/${{ github.repository }}/blob/main/CHANGELOG.md", "compatibility" : {"minimum": "11", "verified": "12", "maximum": ""} } }'
81+
data: '{"dry_run": false, "id" : "notelicker", "release": {"version" : "${{ steps.get-version.outputs.release_version }}", "manifest": "https://github.com/${{ github.repository }}/releases/download/${{ steps.get-version.outputs.release_version }}/module.json", "notes" : "https://github.com/${{ github.repository }}/blob/main/CHANGELOG.md", "compatibility" : {"minimum": "13", "verified": "13", "maximum": ""} } }'

.github/workflows/pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [16.x]
17+
node-version: [20.x]
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v1
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: ${{ matrix.node-version }}
2525
- run: npm ci

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.0.0
2+
3+
- v13 support, no v12 support in this version.
4+
15
# 0.2.0
26

37
- v10 support dropped, fixed some deprecation warnings in v12.

module-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "notelicker",
33
"title": "Note Licker",
44
"license": "MIT License",
5-
"description": "Enhance your scene notes. Adds header jumps, and auto iconizing",
5+
"description": "Enhance your scene notes. Adds header jumps, and auto icon numbers",
66
"version": "999.0.0",
77
"download": "https://github.com/MrPrimate/NoteLicker/releases/download/VERSION/notelicker.zip",
88
"manifest": "https://github.com/MrPrimate/NoteLicker/releases/download/latest/module.json",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "notelicker",
3-
"version": "0.2.0",
3+
"version": "1.0.0",
44
"author": "MrPrimate",
55
"description": "Foundry VTT module for enhancing notes and their icons",
66
"private": true,

0 commit comments

Comments
 (0)