diff --git a/CHANGELOG.md b/CHANGELOG.md index dcdf9201..4d3292da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,21 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## 0.5.0-alpha.0 / 28 Feb 2021 + +This is an alpha release, but new servers should use this version rather than an older "stable" one. The `u-wave-http-api` package has been merged into `u-wave-core`. This package now contains both the library and the HTTP and WebSocket API for üWave servers. +The minimum supported Node.js version is v12.20.0. + +`u-wave-core` now includes a basic CLI with some default configuration. + +```bash +npm install --global u-wave-core@next +u-wave-core --help +``` + Features: * **Breaking:** Merge `u-wave-http-api`. (#333) * Automatically activate a user's first playlist. (#219) @@ -17,6 +28,7 @@ Features: * Add social authentication support. (#265, #385) * Add runtime configuration support. (#380, #408) * Add database migrations. (#410) + * Add a CLI to run a basic, default-configuration server. (#391, #418) Internal: * Add `uw.models` property for easier mongoose model access. (#283) diff --git a/package.json b/package.json index 79b8f94f..f7e67e9a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "u-wave-core", - "version": "0.4.1", + "version": "0.5.0-alpha.1", "description": "The üWave core library.", "license": "MIT", "repository": "u-wave/core", @@ -16,7 +16,7 @@ "u-wave-core": "bin/u-wave-core" }, "engines": { - "node": ">= 10" + "node": ">= 12.20.0" }, "dependencies": { "ajv": "^7.0.3",