diff --git a/.changeset/tame-wasps-add.md b/.changeset/tame-wasps-add.md deleted file mode 100644 index 58d7558..0000000 --- a/.changeset/tame-wasps-add.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@magicserver/magicserver": minor ---- - -Implements automatic renewal of certificates. A new certificate is requested when the current has reach two-thirds of its lifetime. For a 90 day certificate (Let's Encrypt default), renewal will take place on the 60th day of issuance. The certificate is updated without impacting the availability of the application; established connections remain functional. diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..23bec16 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ +# @magicserver/magicserver + +## 0.1.0 + +### Minor Changes + +- [#1](https://github.com/magicserverjs/magicserver/pull/1) [`1bc20d3`](https://github.com/magicserverjs/magicserver/commit/1bc20d36a5df7780b0e10752ddb39bc78ec5735a) Thanks [@lilnasy](https://github.com/lilnasy)! - Implements automatic renewal of certificates. A new certificate is requested when the current has reach two-thirds of its lifetime. For a 90 day certificate (Let's Encrypt default), renewal will take place on the 60th day of issuance. The certificate is updated without impacting the availability of the application; established connections remain functional. diff --git a/README.md b/README.md index 41ff1e4..e89ad69 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,8 @@ const server = createMagicServer("example.com", (req, res) => { Here, `createMagicServer()` requests a certificate for "example.com" from Let's Encrypt, verifies ownership of the domain, and finally starts an HTTPS server that responds with "Hello, world!". +To learn more about how to use magicserver, please review our [documentation](https://magicserver.arsh.sh/docs). + ## Features - **Easy configuration** with best-practice defaults that just work. - **Enterprise-ready** with flexibility to use a custom CA for internal names. diff --git a/package.json b/package.json index ba88e42..a9b373c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@magicserver/magicserver", - "version": "0.0.0", + "version": "0.1.0", "description": "Automatic HTTPS for any Node.js application. Fully managed TLS certificate issuance and renewal.", "license": "MIT", "author": {