We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e1711d commit 015c2a8Copy full SHA for 015c2a8
2 files changed
package.json
@@ -2,7 +2,7 @@
2
"name": "typescript",
3
"author": "Microsoft Corp.",
4
"homepage": "http://typescriptlang.org/",
5
- "version": "3.0.0",
+ "version": "3.0.0-rc",
6
"license": "Apache-2.0",
7
"description": "TypeScript is a language for application scale JavaScript development",
8
"keywords": [
@@ -112,4 +112,4 @@
112
"path": false
113
},
114
"dependencies": {}
115
-}
+}
src/compiler/core.ts
@@ -3,7 +3,7 @@ namespace ts {
// If changing the text in this section, be sure to test `configureNightly` too.
export const versionMajorMinor = "3.0";
/** The version of the TypeScript compiler release */
- export const version = `${versionMajorMinor}.0-dev`;
+ export const version = `${versionMajorMinor}.0-rc`;
}
9
namespace ts {
0 commit comments