Skip to content

Commit b08000a

Browse files
chore: release main (#3)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent a4df86c commit b08000a

File tree

13 files changed

+154
-19
lines changed

13 files changed

+154
-19
lines changed

.release-please-manifest.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"packages/types": "0.0.1",
3-
"packages/test": "0.0.1",
4-
"packages/core": "0.0.1",
5-
"packages/node": "0.0.1",
6-
"packages/deno": "0.0.1",
7-
"packages/memory": "0.0.1"
2+
"packages/types": "0.0.2",
3+
"packages/test": "0.1.0",
4+
"packages/core": "0.1.0",
5+
"packages/node": "0.1.0",
6+
"packages/deno": "0.1.0",
7+
"packages/memory": "0.1.0"
88
}

packages/core/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Changelog
2+
3+
## [0.1.0](https://github.com/humanwhocodes/fsx/compare/fsx-core-v0.0.1...fsx-core-v0.1.0) (2024-01-06)
4+
5+
6+
### Features
7+
8+
* **core:** Add missing impl methods ([89d64de](https://github.com/humanwhocodes/fsx/commit/89d64de9caea64d2867c03875c6d67a22dff2b87))
9+
* **core:** Ensure write() validates file contents parameter. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
10+
* **core:** Make logging more generic ([7b2c3b7](https://github.com/humanwhocodes/fsx/commit/7b2c3b72ea73fced857cb3e32f286058874625ec))
11+
* **deno:** Remove write() parameter validation. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
12+
* Fsx class handles parameter validation ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
13+
* **memory:** Remove unnecessary parameter check. ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
14+
* **memory:** Remove write() paramater validation. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
15+
* Move parameter validation for write() to Fsx ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
16+
* **node:** Remove unnecessary parameter check. ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
17+
* **node:** Remove write() parameter validation. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
18+
* **test:** Remove test for checking filePath is not a number. ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
19+
20+
21+
### Bug Fixes
22+
23+
* **docs:** Correct package names in READMEs ([6c552ac](https://github.com/humanwhocodes/fsx/commit/6c552ac74542a245cdc2675101858da022336a1a))
24+
25+
26+
### Dependencies
27+
28+
* The following workspace dependencies were updated
29+
* devDependencies
30+
* fsx-types bumped from ^0.0.0 to ^0.0.2

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fsx-core",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "The core of the fsx library.",
55
"type": "module",
66
"types": "dist/index.d.ts",
@@ -32,7 +32,7 @@
3232
},
3333
"homepage": "https://github.com/humanwhocodes/fsx#readme",
3434
"devDependencies": {
35-
"fsx-types": "^0.0.0",
35+
"fsx-types": "^0.0.2",
3636
"c8": "^8.0.1",
3737
"mocha": "^10.2.0",
3838
"typescript": "^5.2.2"

packages/deno/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Changelog
2+
3+
## [0.1.0](https://github.com/humanwhocodes/fsx/compare/fsx-deno-v0.0.1...fsx-deno-v0.1.0) (2024-01-06)
4+
5+
6+
### Features
7+
8+
* **core:** Ensure write() validates file contents parameter. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
9+
* **deno:** Remove write() parameter validation. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
10+
* **memory:** Remove write() paramater validation. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
11+
* Move parameter validation for write() to Fsx ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
12+
* **node:** Remove write() parameter validation. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
13+
14+
15+
### Bug Fixes
16+
17+
* **docs:** Correct package names in READMEs ([6c552ac](https://github.com/humanwhocodes/fsx/commit/6c552ac74542a245cdc2675101858da022336a1a))

packages/deno/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fsx-deno",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "The Deno bindings of the fsx library.",
55
"type": "module",
66
"types": "dist/deno-fsx.d.ts",

packages/memory/CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Changelog
2+
3+
## [0.1.0](https://github.com/humanwhocodes/fsx/compare/fsx-memory-v0.0.1...fsx-memory-v0.1.0) (2024-01-06)
4+
5+
6+
### Features
7+
8+
* **core:** Ensure write() validates file contents parameter. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
9+
* **deno:** Remove write() parameter validation. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
10+
* Fsx class handles parameter validation ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
11+
* **memory:** Remove unnecessary parameter check. ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
12+
* **memory:** Remove write() paramater validation. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
13+
* Move parameter validation for write() to Fsx ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
14+
* **node:** Remove unnecessary parameter check. ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
15+
* **node:** Remove write() parameter validation. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
16+
* **test:** Remove test for checking filePath is not a number. ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
17+
18+
19+
### Bug Fixes
20+
21+
* **docs:** Correct package names in READMEs ([6c552ac](https://github.com/humanwhocodes/fsx/commit/6c552ac74542a245cdc2675101858da022336a1a))
22+
23+
24+
### Dependencies
25+
26+
* The following workspace dependencies were updated
27+
* dependencies
28+
* fsx-core bumped from ^0.0.0 to ^0.1.0
29+
* devDependencies
30+
* fsx-test bumped from ^0.0.0 to ^0.1.0
31+
* fsx-types bumped from ^0.0.0 to ^0.0.2

packages/memory/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fsx-memory",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "The in-memory bindings for the fsx library.",
55
"type": "module",
66
"types": "dist/memory-fsx.d.ts",
@@ -39,10 +39,10 @@
3939
"@types/node": "^20.9.4",
4040
"mocha": "^10.2.0",
4141
"typescript": "^5.2.2",
42-
"fsx-test": "^0.0.0",
43-
"fsx-types": "^0.0.0"
42+
"fsx-test": "^0.1.0",
43+
"fsx-types": "^0.0.2"
4444
},
4545
"dependencies": {
46-
"fsx-core": "^0.0.0"
46+
"fsx-core": "^0.1.0"
4747
}
4848
}

packages/node/CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Changelog
2+
3+
## [0.1.0](https://github.com/humanwhocodes/fsx/compare/fsx-node-v0.0.1...fsx-node-v0.1.0) (2024-01-06)
4+
5+
6+
### Features
7+
8+
* **core:** Ensure write() validates file contents parameter. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
9+
* **deno:** Remove write() parameter validation. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
10+
* Fsx class handles parameter validation ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
11+
* **memory:** Remove unnecessary parameter check. ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
12+
* **memory:** Remove write() paramater validation. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
13+
* Move parameter validation for write() to Fsx ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
14+
* **node:** Remove unnecessary parameter check. ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
15+
* **node:** Remove write() parameter validation. ([89cda51](https://github.com/humanwhocodes/fsx/commit/89cda51a973bb963ad92bcb37ce761e51aea9165))
16+
* **test:** Remove test for checking filePath is not a number. ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
17+
18+
19+
### Bug Fixes
20+
21+
* **docs:** Correct package names in READMEs ([6c552ac](https://github.com/humanwhocodes/fsx/commit/6c552ac74542a245cdc2675101858da022336a1a))
22+
* **node:** parameter name in NodeFsxImpl ([ac9d2f3](https://github.com/humanwhocodes/fsx/commit/ac9d2f3ebc7181c861f7477edc5a42e59610488a))
23+
24+
25+
### Dependencies
26+
27+
* The following workspace dependencies were updated
28+
* dependencies
29+
* fsx-core bumped from ^0.0.0 to ^0.1.0
30+
* devDependencies
31+
* fsx-test bumped from ^0.0.0 to ^0.1.0
32+
* fsx-types bumped from ^0.0.0 to ^0.0.2

packages/node/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fsx-node",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "The Node.js bindings of the fsx library.",
55
"type": "module",
66
"types": "dist/node-fsx.d.ts",
@@ -39,10 +39,10 @@
3939
"@types/node": "^20.9.4",
4040
"mocha": "^10.2.0",
4141
"typescript": "^5.2.2",
42-
"fsx-test": "^0.0.0",
43-
"fsx-types": "^0.0.0"
42+
"fsx-test": "^0.1.0",
43+
"fsx-types": "^0.0.2"
4444
},
4545
"dependencies": {
46-
"fsx-core": "^0.0.0"
46+
"fsx-core": "^0.1.0"
4747
}
4848
}

packages/test/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Changelog
2+
3+
## [0.1.0](https://github.com/humanwhocodes/fsx/compare/fsx-test-v0.0.1...fsx-test-v0.1.0) (2024-01-06)
4+
5+
6+
### Features
7+
8+
* Fsx class handles parameter validation ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
9+
* **memory:** Remove unnecessary parameter check. ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
10+
* **node:** Remove unnecessary parameter check. ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
11+
* **test:** Ensure outputDir is provided to FsxImplTester ([3493eaa](https://github.com/humanwhocodes/fsx/commit/3493eaaf91331cd7169b7340029e6e426fbc4ecf))
12+
* **test:** Remove test for checking filePath is not a number. ([1072b55](https://github.com/humanwhocodes/fsx/commit/1072b55e506390cccc7142f53bdd8c74d8dc0f60))
13+
14+
15+
### Bug Fixes
16+
17+
* **docs:** Correct package names in READMEs ([6c552ac](https://github.com/humanwhocodes/fsx/commit/6c552ac74542a245cdc2675101858da022336a1a))

0 commit comments

Comments
 (0)