Skip to content

Commit

Permalink
Merge pull request #211 from curveball/export-version
Browse files Browse the repository at this point in the history
Export version string from kernel
  • Loading branch information
evert authored Feb 17, 2023
2 parents 5a93459 + 5d03c19 commit 6f01de4
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 31 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

0.21.1 (????-??-??)
-------------------

* Export server version string


0.21.0 (2023-02-14)
-------------------

Expand Down
56 changes: 28 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@curveball/core",
"version": "0.20.0",
"version": "0.21.0",
"description": "Curveball is a framework writting in Typescript for Node.js",
"type": "module",
"exports": {
Expand Down Expand Up @@ -34,13 +34,13 @@
"url": "git+https://github.com/curveball/core.git"
},
"dependencies": {
"@curveball/kernel": ">=0.21.0 <1",
"@curveball/kernel": ">=0.21.1 <1",
"@types/ws": "^8.5.3",
"raw-body": "^2.4.1",
"ws": "^8.5.0"
},
"peerDependencies": {
"@curveball/kernel": ">=0.21.0 <1"
"@curveball/kernel": ">=0.21.1 <1"
},
"devDependencies": {
"@curveball/http-errors": "^0.5.0",
Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ export {
Context,
// For backwards compatibility
Context as BaseContext,

VERSION,
} from '@curveball/kernel';

0 comments on commit 6f01de4

Please sign in to comment.