Skip to content

Commit 6409afc

Browse files
committed
[pd] bump version to 1.1.0
1 parent a0180d4 commit 6409afc

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,21 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased][unreleased]
66
### Changed
7-
- Add some caching of file source and code indices
7+
8+
- Added basic 'daemon' mode, racer process can be kept running between invocations
89

9-
- Fix issue resolving some std::* modules in latest rust source: (rust std lib implicitly imports core with #![no_std])
10+
- now uses clap to parse command line options
1011

11-
- Update emacs racer.el to write temporary files to tmpdir rather than the same directory as the source file
12+
- Adds caching of file source and code indices
1213

13-
- Search multirust overrides when locating cargo src directories
14+
- Adds an alternative 'tabbed' mode where inputs and outputs can be tab separated for easier parsing
1415

15-
- fix emacs block indenting (#296)
16+
- emacs and vim support split out into their own git projects at https://github.com/racer-rust/emacs-racer https://github.com/racer-rust/vim-racer
17+
18+
- Fix issue resolving some std::* modules in latest rust source: (rust std lib implicitly imports core with #![no_std])
19+
20+
- Searches multirust overrides when locating cargo src directories
1621

1722
## [1.0.0] 2015-07-29
23+
1824
- First release

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "racer"
4-
version = "1.0.0"
4+
version = "1.1.0"
55
license = "MIT"
66
description = "Code completion for Rust"
77
authors = ["Phil Dawes <[email protected]>"]

src/bin/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ fn build_cli<'a, 'b, 'c, 'd, 'e, 'f>() -> App<'a, 'b, 'c, 'd, 'e, 'f> {
304304
// than the less verbose "Usage String" method...faster, meaning runtime speed since that's
305305
// extremely important here
306306
App::new("racer")
307-
.version("v1.0.1")
307+
.version("v1.1.0")
308308
.author("Phil Dawes")
309309
.about("A Rust code completion utility")
310310
.settings(&[AppSettings::GlobalVersion,

0 commit comments

Comments
 (0)