Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit 168fcec

Browse files
committed
Change the version to match the Rust version
And add -preview to the version string
1 parent 5fd2ea3 commit 168fcec

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rls"
3-
version = "0.1.0"
3+
version = "0.121.0"
44
authors = ["Nick Cameron <[email protected]>", "Jonathan Turner <[email protected]>", "The RLS developers"]
55
description = "Rust Language Server - provides information about Rust programs to IDEs and other tools"
66
license = "Apache-2.0/MIT"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pub fn main() {
7272

7373
if let Some(first_arg) = ::std::env::args().skip(1).next() {
7474
match first_arg.as_str() {
75-
"--version" | "-V" => println!("rls {}", version()),
75+
"--version" | "-V" => println!("rls-preview {}", version()),
7676
"--help" | "-h" => println!("{}", help()),
7777
_ => cmd::run(),
7878
}

0 commit comments

Comments
 (0)