diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ecb2f55..685ff71c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v0.1.11 + +This release should be compatible with Atom 1.19. + +- diagnostics: Converted to Redux, deprecated the old "nuclide-diagnostics" APIs. +- definitions: Fixed a memory leak with definition caching. +- definitions: Multiple definitions don't require a "name" anymore. + ## v0.1.10 - code-format: Bugfix for Atom 1.19. diff --git a/package.json b/package.json index 99940c67..07d46725 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "atom-ide-ui", - "version": "0.1.10", + "version": "0.1.11", "description": "A collection of Atom UIs to support language services.", "keywords": [], "repository": "https://github.com/facebooknuclide/atom-ide-ui", @@ -9,6 +9,6 @@ "atom": ">= 1.17.0" }, "dependencies": { - "atom-ide-ui": "0.1.9" + "atom-ide-ui": "0.1.10" } }