Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed May 12, 2024
1 parent 2673719 commit f178a94
Show file tree
Hide file tree
Showing 9 changed files with 48 additions and 26 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"mocha": "^9.2.2",
"shx": "^0.3.4",
"typescript": "^5.4.3",
"yakumo": "^1.0.0-beta.13",
"yakumo": "^1.0.0-beta.14",
"yakumo-esbuild": "^1.0.0-beta.5",
"yakumo-mocha": "^1.0.0-beta.2",
"yakumo-tsc": "^1.0.0-beta.3",
Expand Down
28 changes: 25 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "minato",
"version": "3.2.0",
"version": "3.3.0",
"description": "Type Driven Database Framework",
"type": "module",
"main": "lib/index.cjs",
Expand All @@ -21,6 +21,10 @@
"src"
],
"author": "Shigma <shigma10826@gmail.com>",
"contributors": [
"Shigma <shigma10826@gmail.com>",
"Hieuzest <girkirin@hotmail.com>"
],
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -39,10 +43,28 @@
"mysql",
"sqlite",
"mongo",
"postgres"
"postgres",
"cordis",
"plugin"
],
"cordis": {
"ecosystem": {
"pattern": [
"@minatojs/driver-*",
"@minatojs/plugin-*",
"minato-plugin-*"
]
},
"service": {
"implements": [
"model"
]
}
},
"peerDependencies": {
"cordis": "^3.15.0"
},
"dependencies": {
"cordis": "^3.14.0",
"cosmokit": "^1.6.2"
}
}
6 changes: 3 additions & 3 deletions packages/memory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@minatojs/driver-memory",
"version": "3.2.0",
"version": "3.3.0",
"description": "In-memory Driver for Minato",
"type": "module",
"main": "lib/index.cjs",
Expand Down Expand Up @@ -37,10 +37,10 @@
"memory"
],
"peerDependencies": {
"minato": "^3.2.0"
"minato": "^3.3.0"
},
"devDependencies": {
"@minatojs/tests": "^2.2.0"
"@minatojs/tests": "^2.3.0"
},
"dependencies": {
"cosmokit": "^1.6.2"
Expand Down
6 changes: 3 additions & 3 deletions packages/mongo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@minatojs/driver-mongo",
"version": "3.2.0",
"version": "3.3.0",
"description": "MongoDB Driver for Minato",
"type": "module",
"main": "lib/index.cjs",
Expand Down Expand Up @@ -38,10 +38,10 @@
"mongodb"
],
"devDependencies": {
"@minatojs/tests": "^2.2.0"
"@minatojs/tests": "^2.3.0"
},
"peerDependencies": {
"minato": "^3.2.0"
"minato": "^3.3.0"
},
"dependencies": {
"cosmokit": "^1.6.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/mysql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@minatojs/driver-mysql",
"version": "3.2.0",
"version": "3.3.0",
"description": "MySQL Driver for Minato",
"type": "module",
"main": "lib/index.cjs",
Expand Down Expand Up @@ -37,14 +37,14 @@
"mysql"
],
"peerDependencies": {
"minato": "^3.2.0"
"minato": "^3.3.0"
},
"devDependencies": {
"@minatojs/tests": "^2.2.0",
"@minatojs/tests": "^2.3.0",
"@types/mysql": "^2.15.26"
},
"dependencies": {
"@minatojs/sql-utils": "^5.2.0",
"@minatojs/sql-utils": "^5.3.0",
"@vlasky/mysql": "^2.18.6",
"cosmokit": "^1.6.2"
}
Expand Down
8 changes: 4 additions & 4 deletions packages/postgres/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@minatojs/driver-postgres",
"version": "2.2.0",
"version": "2.3.0",
"description": "PostgreSQL Driver for Minato",
"type": "module",
"main": "lib/index.cjs",
Expand Down Expand Up @@ -42,13 +42,13 @@
"postgresql"
],
"peerDependencies": {
"minato": "^3.2.0"
"minato": "^3.3.0"
},
"devDependencies": {
"@minatojs/tests": "^2.2.0"
"@minatojs/tests": "^2.3.0"
},
"dependencies": {
"@minatojs/sql-utils": "^5.2.0",
"@minatojs/sql-utils": "^5.3.0",
"cosmokit": "^1.6.2",
"postgres": "^3.4.4"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/sql-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@minatojs/sql-utils",
"version": "5.2.0",
"version": "5.3.0",
"description": "SQL Utilities for Minato",
"type": "module",
"main": "lib/index.cjs",
Expand Down Expand Up @@ -41,7 +41,7 @@
"builder"
],
"peerDependencies": {
"minato": "^3.2.0"
"minato": "^3.3.0"
},
"dependencies": {
"cosmokit": "^1.6.2"
Expand Down
8 changes: 4 additions & 4 deletions packages/sqlite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@minatojs/driver-sqlite",
"version": "4.2.0",
"version": "4.3.0",
"description": "SQLite Driver for Minato",
"type": "module",
"main": "lib/index.cjs",
Expand Down Expand Up @@ -37,13 +37,13 @@
"sqlite"
],
"peerDependencies": {
"minato": "^3.2.0"
"minato": "^3.3.0"
},
"devDependencies": {
"@minatojs/tests": "^2.2.0"
"@minatojs/tests": "^2.3.0"
},
"dependencies": {
"@minatojs/sql-utils": "^5.2.0",
"@minatojs/sql-utils": "^5.3.0",
"@minatojs/sql.js": "^3.1.0",
"cosmokit": "^1.6.2"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@minatojs/tests",
"version": "2.2.0",
"version": "2.3.0",
"description": "Test Cases for Minato",
"type": "module",
"main": "lib/index.js",
Expand Down Expand Up @@ -31,7 +31,7 @@
"@types/chai-as-promised": "^7.1.8"
},
"peerDependencies": {
"minato": "^3.2.0"
"minato": "^3.3.0"
},
"dependencies": {
"chai": "^4.4.1",
Expand Down

0 comments on commit f178a94

Please sign in to comment.