From dd1105e8c5bc3a097fc8c4b3d4aea601e19655c2 Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Sun, 20 May 2018 03:27:51 +0300 Subject: [PATCH] chore: release 1.0.0-rc.0 --- CHANGELOG.md | 10 ++++++++++ index.ts | 2 +- package.json | 3 ++- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee45365..40b5e33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 1.0.0-rc.0 - 2018-05-20 +- Migrate project to TypeScript +- Drop node 6.x support +- Add `address()`, `getPort()` methods +- `close()` method now returns a promise +- Upgrade the Firebase JS Library to 5.x +- Upgrade the `ws` library to 5.x +- Split send payloads according to firebase's custom continuation format ([#115](https://github.com/urish/firebase-server/pull/115), contributed by [andrewparmet](https://github.com/andrewparmet)) +- Align 'now' in Targaryen with firebase-server time ([#112](https://github.com/urish/firebase-server/pull/112), contributed by [dotdoom](https://github.com/dotdoom)) + ## 0.12.0 - 2017-11-16 - REST API support ([#95](https://github.com/urish/firebase-server/pull/95), contributed by [p-salido](https://github.com/p-salido)) - Daemonization option ([#111](https://github.com/urish/firebase-server/pull/111), contributed by [p-salido](https://github.com/p-salido)) diff --git a/index.ts b/index.ts index 4c08042..8018c83 100644 --- a/index.ts +++ b/index.ts @@ -1,5 +1,5 @@ /* - * firebase-server 0.12.0 + * firebase-server 1.0.0-rc.0 * License: MIT. * Copyright (C) 2013, 2014, 2015, 2016, 2017, 2018 Uri Shaked and contributors. */ diff --git a/package.json b/package.json index c30b7c0..74ee592 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,13 @@ { "name": "firebase-server", - "version": "0.12.0", + "version": "1.0.0-rc.0", "description": "Simple Firebase Server", "main": "dist/index.js", "typings": "dist/index.d.ts", "bin": "./bin/firebase-server.js", "scripts": { "build": "rimraf dist && tsc", + "prepublish": "yarn build", "test": "yarn lint && yarn cover", "cover": "nyc mocha", "debug": "mocha",