Skip to content

Commit

Permalink
1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
leo91000 committed Dec 24, 2021
1 parent 7441dc4 commit a6bdc69
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
pull_request: null
jobs:
build:
if: "!contains(github.event.head_commit.message, 'skip ci')"
if: '!contains(github.event.head_commit.message, ''skip ci'')'
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
- name: Cache NPM dependencies
uses: actions/cache@v2
with:
path: crates/node/node_modules
path: node_modules
key: npm-cache-${{ matrix.settings.target }}-node@16-${{ hashFiles('yarn.lock') }}
- name: Pull latest image
run: ${{ matrix.settings.docker }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@leo91000/subset-sum",
"version": "1.0.1",
"version": "1.0.2",
"main": "index.js",
"types": "index.d.ts",
"napi": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/npm/android-arm-eabi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-subset-sum-android-arm-eabi",
"version": "0.0.0",
"version": "1.0.2",
"os": [
"android"
],
Expand Down
2 changes: 1 addition & 1 deletion scripts/npm/android-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-subset-sum-android-arm64",
"version": "0.0.0",
"version": "1.0.2",
"os": [
"android"
],
Expand Down
2 changes: 1 addition & 1 deletion scripts/npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-subset-sum-darwin-arm64",
"version": "0.0.0",
"version": "1.0.2",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion scripts/npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-subset-sum-darwin-x64",
"version": "0.0.0",
"version": "1.0.2",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion scripts/npm/freebsd-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-subset-sum-freebsd-x64",
"version": "0.0.0",
"version": "1.0.2",
"os": [
"freebsd"
],
Expand Down
2 changes: 1 addition & 1 deletion scripts/npm/linux-arm-gnueabihf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-subset-sum-linux-arm-gnueabihf",
"version": "0.0.0",
"version": "1.0.2",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion scripts/npm/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-subset-sum-linux-arm64-gnu",
"version": "0.0.0",
"version": "1.0.2",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion scripts/npm/linux-arm64-musl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-subset-sum-linux-arm64-musl",
"version": "0.0.0",
"version": "1.0.2",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion scripts/npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-subset-sum-linux-x64-gnu",
"version": "0.0.0",
"version": "1.0.2",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion scripts/npm/linux-x64-musl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-subset-sum-linux-x64-musl",
"version": "0.0.0",
"version": "1.0.2",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion scripts/npm/win32-arm64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-subset-sum-win32-arm64-msvc",
"version": "0.0.0",
"version": "1.0.2",
"os": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion scripts/npm/win32-ia32-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-subset-sum-win32-ia32-msvc",
"version": "0.0.0",
"version": "1.0.2",
"os": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion scripts/npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-subset-sum-win32-x64-msvc",
"version": "0.0.0",
"version": "1.0.2",
"os": [
"win32"
],
Expand Down

0 comments on commit a6bdc69

Please sign in to comment.