Skip to content
This repository was archived by the owner on Aug 13, 2024. It is now read-only.

Commit 911c0cf

Browse files
committed
bump versions from 1.8 to 2.1
1 parent 935dfaa commit 911c0cf

File tree

11 files changed

+24
-16
lines changed

11 files changed

+24
-16
lines changed

com.palantir.typescript.feature/feature.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<feature
1818
id="com.palantir.typescript.feature"
1919
label="TypeScript"
20-
version="1.8.0.qualifier"
20+
version="2.1.0.qualifier"
2121
provider-name="Palantir Technologies, Inc.">
2222

2323
<description url="https://github.com/palantir/eclipse-typescript">
@@ -237,6 +237,6 @@
237237
id="com.palantir.typescript"
238238
download-size="0"
239239
install-size="0"
240-
version="1.8.0.qualifier"/>
240+
version="2.1.0.qualifier"/>
241241

242242
</feature>

com.palantir.typescript.feature/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<relativePath>../pom.xml</relativePath>
2222
<groupId>com.palantir</groupId>
2323
<artifactId>parent</artifactId>
24-
<version>1.8.0.qualifier</version>
24+
<version>2.1.0.qualifier</version>
2525
</parent>
2626

2727
<artifactId>com.palantir.typescript.feature</artifactId>

com.palantir.typescript.p2updatesite/category.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
limitations under the License.
1616
-->
1717
<site>
18-
<feature url="features/com.palantir.typescript.feature_1.8.0.qualifier.jar" id="com.palantir.typescript.feature" version="1.8.0.qualifier">
18+
<feature url="features/com.palantir.typescript.feature_2.1.0.qualifier.jar" id="com.palantir.typescript.feature" version="2.1.0.qualifier">
1919
<category name="com.palantir.typescript"/>
2020
</feature>
2121
<category-def name="com.palantir.typescript" label="TypeScript"/>

com.palantir.typescript.p2updatesite/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<relativePath>../pom.xml</relativePath>
2222
<groupId>com.palantir</groupId>
2323
<artifactId>parent</artifactId>
24-
<version>1.8.0.qualifier</version>
24+
<version>2.1.0.qualifier</version>
2525
</parent>
2626

2727
<artifactId>com.palantir.typescript.p2updatesite</artifactId>

com.palantir.typescript/.classpath

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
<classpath>
33
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
44
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
5-
<classpathentry kind="src" path="src"/>
65
<classpathentry kind="lib" path="lib/guava-19.0.jar" sourcepath="lib/guava-19.0-sources.jar"/>
7-
<classpathentry kind="lib" path="lib/jackson-annotations-2.7.2.jar"/>
8-
<classpathentry kind="lib" path="lib/jackson-core-2.7.2.jar"/>
9-
<classpathentry kind="lib" path="lib/jackson-databind-2.7.2.jar"/>
10-
<classpathentry kind="output" path="ecbuild"/>
6+
<classpathentry kind="src" path="src"/>
7+
<classpathentry exported="true" kind="lib" path="lib/jackson-annotations-2.7.2.jar"/>
8+
<classpathentry exported="true" kind="lib" path="lib/jackson-core-2.7.2.jar"/>
9+
<classpathentry exported="true" kind="lib" path="lib/jackson-databind-2.7.2.jar"/>
10+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
11+
<classpathentry kind="output" path="target/classes"/>
1112
</classpath>

com.palantir.typescript/.project

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,14 @@
3030
<arguments>
3131
</arguments>
3232
</buildCommand>
33+
<buildCommand>
34+
<name>org.eclipse.m2e.core.maven2Builder</name>
35+
<arguments>
36+
</arguments>
37+
</buildCommand>
3338
</buildSpec>
3439
<natures>
40+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
3541
<nature>org.eclipse.pde.PluginNature</nature>
3642
<nature>org.eclipse.jdt.core.javanature</nature>
3743
<nature>net.sf.eclipsecs.core.CheckstyleNature</nature>

com.palantir.typescript/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bundle-Localization: plugin
33
Bundle-ManifestVersion: 2
44
Bundle-Name: TypeScript
55
Bundle-SymbolicName: com.palantir.typescript;singleton:=true
6-
Bundle-Version: 1.8.0.qualifier
6+
Bundle-Version: 2.1.0.qualifier
77
Bundle-Activator: com.palantir.typescript.TypeScriptPlugin
88
Bundle-Vendor: Palantir Technologies
99
Require-Bundle: org.eclipse.compare,

com.palantir.typescript/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<relativePath>../pom.xml</relativePath>
2222
<groupId>com.palantir</groupId>
2323
<artifactId>parent</artifactId>
24-
<version>1.8.0.qualifier</version>
24+
<version>2.1.0.qualifier</version>
2525
</parent>
2626

2727
<artifactId>com.palantir.typescript</artifactId>

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eclipse-typescript",
3-
"version": "1.8.0",
3+
"version": "2.1.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/palantir/eclipse-typescript.git"
@@ -9,6 +9,7 @@
99
"grunt": "1.0.1",
1010
"grunt-contrib-concat": "^1.0.1",
1111
"grunt-contrib-watch": "^1.0.0",
12-
"grunt-ts": "5.5.1"
12+
"grunt-ts": "6.0.0-beta.3",
13+
"typescript": "2.1.4"
1314
}
1415
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<groupId>com.palantir</groupId>
2121
<artifactId>parent</artifactId>
22-
<version>1.8.0.qualifier</version>
22+
<version>2.1.0.qualifier</version>
2323
<packaging>pom</packaging>
2424

2525
<modules>

scripts/updateTypeScript.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -e
66
(
77
cd ../TypeScript
88
git fetch
9-
git checkout origin/release-1.8
9+
git checkout origin/release-2.1
1010
rm -rf built/local
1111
jake clean
1212
jake local

0 commit comments

Comments
 (0)