@seedcord/services 0.7.0-next.0 → 0.7.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
@@ -1498,7 +1498,7 @@ var CoordinatedStartup = class extends CoordinatedLifecycle {
1498
1498
  //#endregion
1499
1499
  //#region src/index.ts
1500
1500
  /** Package version */
1501
- const version = "0.7.0-next.0";
1501
+ const version = "0.7.0";
1502
1502
 
1503
1503
  //#endregion
1504
1504
  exports.CooldownManager = CooldownManager;
package/dist/index.mjs CHANGED
@@ -1491,7 +1491,7 @@ var CoordinatedStartup = class extends CoordinatedLifecycle {
1491
1491
  //#endregion
1492
1492
  //#region src/index.ts
1493
1493
  /** Package version */
1494
- const version = "0.7.0-next.0";
1494
+ const version = "0.7.0";
1495
1495
 
1496
1496
  //#endregion
1497
1497
  export { CooldownManager, CoordinatedLifecycle, CoordinatedShutdown, CoordinatedStartup, HealthCheck, Logger, LoggerChannelRegistry, LoggerUtilities, SeedcordErrorCode, ShutdownPhase, StartupPhase, StrictEventEmitter, isSeedcordError, version };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@seedcord/services",
3
3
  "type": "module",
4
- "version": "0.7.0-next.0",
4
+ "version": "0.7.0",
5
5
  "description": "Services for Seedcord packages",
6
6
  "repository": {
7
7
  "type": "git",
@@ -46,13 +46,13 @@
46
46
  "strip-ansi": "^7.2.0",
47
47
  "winston": "^3.19.0",
48
48
  "winston-transport": "^4.9.0",
49
- "@seedcord/types": "0.4.0-next.0",
50
- "@seedcord/utils": "0.4.0-next.0"
49
+ "@seedcord/types": "0.4.0",
50
+ "@seedcord/utils": "0.4.0"
51
51
  },
52
52
  "devDependencies": {
53
53
  "type-fest": "^5.6.0",
54
- "@seedcord/eslint-config": "1.4.0-next.0",
55
- "@seedcord/tsconfig": "2.0.0-next.0",
54
+ "@seedcord/eslint-config": "1.4.0",
55
+ "@seedcord/tsconfig": "2.0.0",
56
56
  "@seedcord/tsdown-config": "2.0.0"
57
57
  },
58
58
  "publishConfig": {
@@ -73,5 +73,5 @@
73
73
  "coverage": "vitest run --coverage",
74
74
  "test:types": "tsd --files \"tests/**/*.test-d.ts\""
75
75
  },
76
- "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"
76
+ "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"
77
77
  }