Skip to content

Commit

Permalink
Merge pull request #76 from lineupjs/release/v2.5.2
Browse files Browse the repository at this point in the history
Release v2.5.2
  • Loading branch information
sgratzl authored Jan 21, 2024
2 parents 6f9e346 + 081f99f commit 5f76820
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: main
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
needs: create_release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: develop
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "lineupengine",
"description": "a fast engine for rendering large tables consisting of rows, rows+columns, multiple rows+columns instances.",
"homepage": "https://lineupengine.js.org",
"version": "2.5.1",
"version": "2.5.2",
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]",
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"compilerOptions": {
"module": "ES2020",
"target": "ES2020",
"module": "ES2015",
"target": "ES5",
"importHelpers": false,
"sourceMap": true,
"lib": ["DOM", "ES2020"],
"lib": ["DOM", "ES2015", "es2016.array.include", "es2017.object"],
"composite": true,
"declaration": true,
"declarationMap": true,
Expand Down

0 comments on commit 5f76820

Please sign in to comment.