Skip to content

Commit

Permalink
fix: incorrect volume syntax error (#9)
Browse files Browse the repository at this point in the history
* fix: incorrect volume syntax error

* release: v0.1.16
  • Loading branch information
nachoaldamav committed Jan 2, 2024
1 parent a316641 commit 8416f1d
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version = "0.0.0"
crate-type = ["cdylib"]

[dependencies]
copy_on_write = "0.1.2"
copy_on_write = "0.1.3"
futures = "0.3.28"
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
napi = { version = "2.12.2", default-features = false, features = ["napi4"] }
Expand Down
2 changes: 1 addition & 1 deletion npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reflink/reflink-darwin-arm64",
"version": "0.1.15",
"version": "0.1.16",
"repository": {
"url": "https://github.com/pnpm/reflink.git",
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reflink/reflink-darwin-x64",
"version": "0.1.15",
"version": "0.1.16",
"repository": {
"url": "https://github.com/pnpm/reflink.git",
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion npm/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reflink/reflink-linux-arm64-gnu",
"version": "0.1.15",
"version": "0.1.16",
"repository": {
"url": "https://github.com/pnpm/reflink.git",
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion npm/linux-arm64-musl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reflink/reflink-linux-arm64-musl",
"version": "0.1.15",
"version": "0.1.16",
"repository": {
"url": "https://github.com/pnpm/reflink.git",
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reflink/reflink-linux-x64-gnu",
"version": "0.1.15",
"version": "0.1.16",
"repository": {
"url": "https://github.com/pnpm/reflink.git",
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion npm/linux-x64-musl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reflink/reflink-linux-x64-musl",
"version": "0.1.15",
"version": "0.1.16",
"repository": {
"url": "https://github.com/pnpm/reflink.git",
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion npm/win32-arm64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reflink/reflink-win32-arm64-msvc",
"version": "0.1.15",
"version": "0.1.16",
"repository": {
"url": "https://github.com/pnpm/reflink.git",
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reflink/reflink-win32-x64-msvc",
"version": "0.1.15",
"version": "0.1.16",
"repository": {
"url": "https://github.com/pnpm/reflink.git",
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reflink/reflink",
"version": "0.1.15",
"version": "0.1.16",
"main": "index.js",
"types": "index.d.ts",
"repository": {
Expand Down Expand Up @@ -41,7 +41,7 @@
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"pretest": "pnpm build",
"test": "cargo t && vitest",
"test": "cargo t && vitest && rimraf -g __reflink-tests-*",
"bench": "node benchmark.mjs",
"universal": "napi universal",
"version": "napi version"
Expand Down

0 comments on commit 8416f1d

Please sign in to comment.