@seedcord/plugins 0.6.0-next.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="../../assets/banner.png" alt="seedcord" width="100%" />
2
+ <img src="https://raw.githubusercontent.com/seedcord/seedcord/main/assets/banner.png" alt="seedcord" width="100%" />
3
3
  </p>
4
4
 
5
5
  ---
@@ -10,4 +10,4 @@ _This repository is a work in progress._
10
10
  - Till a major v1.0.0 release for seedcord, expect breaking changes in minor versions.
11
11
  - Documentation will come soon as well!
12
12
 
13
- I'm planning to release the first major version by Q1 2026. But till then, if you'd like to try using it, you can check out the code in `mock`
13
+ If you'd like to try it out, you can check out the code in `mock`
package/dist/index.cjs CHANGED
@@ -989,7 +989,7 @@ function WrapDatabaseError(errorMessage) {
989
989
  //#endregion
990
990
  //#region src/index.ts
991
991
  /** Package version */
992
- const version = "0.6.0-next.0";
992
+ const version = "0.6.0";
993
993
 
994
994
  //#endregion
995
995
  exports.KpgService = KpgService;
package/dist/index.mjs CHANGED
@@ -958,7 +958,7 @@ function WrapDatabaseError(errorMessage) {
958
958
  //#endregion
959
959
  //#region src/index.ts
960
960
  /** Package version */
961
- const version = "0.6.0-next.0";
961
+ const version = "0.6.0";
962
962
 
963
963
  //#endregion
964
964
  export { KpgService, KyselyPg, Mongo, MongoService, RegisterKpgService, RegisterMongoModel, RegisterMongoService, WrapDatabaseError, version };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@seedcord/plugins",
3
3
  "type": "module",
4
- "version": "0.6.0-next.0",
4
+ "version": "0.6.0",
5
5
  "description": "Official plugins for Seedcord Discord bot framework",
6
6
  "repository": {
7
7
  "type": "git",
@@ -48,11 +48,11 @@
48
48
  "dependencies": {
49
49
  "chalk": "^5.6.2",
50
50
  "envapt": "^5.0.3",
51
- "@seedcord/cli": "0.1.0-next.0",
52
- "@seedcord/services": "0.7.0-next.0",
53
- "@seedcord/types": "0.4.0-next.0",
54
- "@seedcord/utils": "0.4.0-next.0",
55
- "seedcord": "0.11.0-next.0"
51
+ "@seedcord/cli": "0.1.0",
52
+ "@seedcord/services": "0.7.0",
53
+ "@seedcord/types": "0.4.0",
54
+ "seedcord": "0.11.0",
55
+ "@seedcord/utils": "0.4.0"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@types/pg": "^8.20.0",
@@ -61,8 +61,8 @@
61
61
  "pg": "^8.21.0",
62
62
  "reflect-metadata": "^0.2.2",
63
63
  "type-fest": "^5.6.0",
64
- "@seedcord/eslint-config": "1.4.0-next.0",
65
- "@seedcord/tsconfig": "2.0.0-next.0",
64
+ "@seedcord/eslint-config": "1.4.0",
65
+ "@seedcord/tsconfig": "2.0.0",
66
66
  "@seedcord/tsdown-config": "2.0.0"
67
67
  },
68
68
  "publishConfig": {
@@ -81,5 +81,5 @@
81
81
  "test:watch": "vitest dev",
82
82
  "coverage": "vitest run --coverage"
83
83
  },
84
- "readme": "<p align=\"center\">\n <img src=\"../../assets/banner.png\" alt=\"seedcord\" width=\"100%\" />\n</p>\n\n---\n\n_This repository is a work in progress._\n\n- There are no stable releases yet but changes are being made actively.\n- Till a major v1.0.0 release for seedcord, expect breaking changes in minor versions.\n- Documentation will come soon as well!\n\nI'm planning to release the first major version by Q1 2026. But till then, if you'd like to try using it, you can check out the code in `mock`\n"
84
+ "readme": "<p align=\"center\">\n <img src=\"https://raw.githubusercontent.com/seedcord/seedcord/main/assets/banner.png\" alt=\"seedcord\" width=\"100%\" />\n</p>\n\n---\n\n_This repository is a work in progress._\n\n- There are no stable releases yet but changes are being made actively.\n- Till a major v1.0.0 release for seedcord, expect breaking changes in minor versions.\n- Documentation will come soon as well!\n\nIf you'd like to try it out, you can check out the code in `mock`\n"
85
85
  }