Skip to content

Commit

Permalink
Merge pull request #495 from TiVo/Release0.10.1
Browse files Browse the repository at this point in the history
Release 0.10.1-RC2
  • Loading branch information
EBatTiVo committed Oct 11, 2016
2 parents 54fbe68 + e8ea8fc commit 4747103
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 33 deletions.
22 changes: 19 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
#Changelog
<p>
Warning: The 14.1 version of this plugin will NOT work correctly using IDEA version 14.1.2.
It works well with versions 14.1, 14.1.1, 14.1.3, and 14.1.4. The version 14.1.5 version
of the plugin is for IDEA versions 14.1.5 and 14.1.6.
Warning for IDEA v14.1.x users: The 14.1 version of this plugin will NOT
work correctly using IDEA version 14.1.2. It works well with versions
14.1, 14.1.1, 14.1.3, and 14.1.4. The version 14.1.5 version of the
plugin is for IDEA versions 14.1.5, 14.1.6, and 14.1.7.
</p>

<p>0.10.1: (community release)</p>
<ul>
<li>Stop using the classpath to auto-add external libraries to projects. (issues #477 #100)</li>
<li>Fix re-ordering imports in certain situations. (issue #494)</li>
<li>Fix 'never' setter. (issue #486)</li>
<li>Change class paths for external libraries on OSX.</li>
<li>Fixed creating classes in TEST source roots</li>
<li>Fixed debug Flash on Haxe-compiler target</li>
<li>Fixed crash on MACRO_CLASS_LIST assert</li>
<li>IDEA 2016 support</li>
<li>@:deprecated support (issue #459, #473)</li>
<li>Alias imports support (issue #466)</li>
<li>Imports optimization: reordering added (issue #471)</li>
</ul>
<p>0.9.10: (community release)</p>
<ul>
<li>Better packages resolving</li>
Expand Down
42 changes: 22 additions & 20 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,16 +94,16 @@ particularly if you see ClassNotFound exceptions when attempting to run the plug

Contributors are expected to have and build against each of the latest
sub-release of each major and minor version of IDEA that is supported
by the plugin team. At the time of this writing, that would be 14.0.4,
and 14.1.1, 14.1.5 (introduced a breaking change), and 15.0.3.
by the plugin team. At the time of this writing, that would be 14.0.5,
and 14.1.1, 14.1.7 (introduced a breaking change), 15.0.6, and 2016.2.4.
As new versions are released this will continue to be
a moving target, as we attempt to keep up with the development community.

We do NOT expect contributors to keep up to date with EAP releases, nor does
the team support them (though the plugin may work, and will usually install).

*According to JetBrains, IDEA releases 16 EAP and later require JDK 8. That
build environment has not been successfully used for this plugin at this time.*
*IDEA releases 2016 and later require JDK 8. That build environment has
been successfully used for this plugin, targeting Java6 for builds prior to 2016.x.*

####Ant Builds

Expand Down Expand Up @@ -276,18 +276,19 @@ IDEA output will be seen.
OK. If you haven't changed anything, this most likely isn't an issue of code.
It's an issue of updating your project structure. Since all of the versions
of the plugin build from a single source base, the project must be set up correctly.
We decided to make the default settings be correct for IDEA v14.1. However, to
We decided to make the default settings be correct for IDEA v2016.x. However, to
build other versions, you can either use the ant builds (see
![Ant Builds][Ant Builds] above), or you can change
the project structure to match the environment you're trying to build.

So, for 13.1.6, open "File->Project Structure->Module->intellij-haxe->Sources(tab)," and change this:
*Note: This same concept applies for current versions.*

So, for 13.1.6, open "File->Project Structure->Module->intellij-haxe->Sources(tab)," and change this:
![Project Structure for IDEA 14](./doc/Idea_Project_Structure_for_v14.png)

to this:
![Project Structure for IDEA 13](./doc/Idea_Project_Structure_for_v13.png)


Then try to rebuild.

Unfortunately, IDEA will not allow multiple modules (.iml files) with the same
Expand Down Expand Up @@ -403,7 +404,7 @@ repository.
OS: Linux(Ubuntu14.04), OSX, Windows
JVM: Sun Java 1.6 target, using Sun Java 1.8 compilers (because the Java 1.6 and 1.7
maintenance windows have closed)
IDEA versions: 14, 14.1, 14.1.6, and 15 (release versions)
IDEA versions: 14, 14.1, 14.1.7, 15, 2016.2 (latest release versions for each code line)

####Who will test:

Expand Down Expand Up @@ -462,8 +463,8 @@ basic functionality:
- Run the project

5. Run the unit tests on all versions:
- `IDEA_VERSION=13.1.6 make test`, etc.
- or `ant -Dintellij.ultimate.build=<path_to_intellij_13.1.6> -f build-test.xml`, etc.
- `IDEA_VERSION=2016.2.4 make test`, etc.
- or `ant -Dintellij.ultimate.build=<path_to_intellij_2016.2.4> -f build-test.xml`, etc.

4. Tag the commit using the agreed upon release number: `git tag -a 0.9.5 -m "Release 0.9.5"`

Expand All @@ -478,7 +479,7 @@ basic functionality:
- Submit

7. Create a Pull Request to pull all of the current changes up to the JetBrains/intellij-haxe/master
repository. Add a shoutouts to @as3Boyan and @EBatTiVo to the pull request.
repository. Add shoutouts to @as3Boyan and @EBatTiVo to the pull request.

8. Upload the jars to the IDEA plugin repository
[https://plugins.jetbrains.com/plugin/6873?pr=idea](https://plugins.jetbrains.com/plugin/6873?pr=idea)
Expand All @@ -493,22 +494,23 @@ Here’s how:
1. Create a new (or use an existing) branch for any work that you do. The critical thing here is not
to do your work directly on the master branch.
2. Make and test your changes.
3. When your work is complete, merge current sources from master up to your branch, re-test locally,
3. Create unit tests for your changes. (See the testSrc and testData directories for examples.)
4. Update src/META-INF/plugin.xml with the change description in the top (Usually "Unreleased changes"
section).
5. When your work is complete, merge current sources from master up to your branch, re-test locally,
then push your branch to TiVo/intellij-haxe. Travis-ci will automatically start a build and test cycle
applying your changes against the master branch.
4. Create a pull request, and wait for comments.
5. If you get comments that require changes, address those and return to step 2.
6. When you get an “OK to merge,” or "approved," message from anyone on the team: Boyan, @as3boyan;
Eric, @EBatTiVo; Srikanth, @sganapavarapu; Yannick, @yahnick, others as they become regular
contributors), go ahead and merge your changes to master. A clean merge requires no further testing,
6. Create a pull request, and wait for comments.
7. If you get comments that require changes, address those and return to step 2.
8. When you get an “OK to merge,” or "approved," message from anyone on the team: Boyan, @as3boyan;
Eric, @EBatTiVo; Srikanth, @sganapavarapu, (others as they become regular contributors,) go ahead
and merge your changes to master. A clean merge requires no further testing,
as Travis-ci will do it for you. However any build break must be addressed immediately. A build
that has conflicts requires manual resolution and must be re-tested locally prior to push. For regular
team members, the original requester will be the person to merge since they are best suited to address
conflicts. Merges from occasional contributors will be merged by a team member as time and
resource becomes available.
8. Check the Travis-ci output (https://travis-ci.org/TiVo/intellij-haxe/builds) to ensure that
9. Check the Travis-ci output (https://travis-ci.org/TiVo/intellij-haxe/builds) to ensure that
everything built correctly.

We’re also planning on setting up an automated “nightly” build that is posted somewhere so that
interested people can get the latest without us constantly posting it to the JetBrains IDEA repository.

11 changes: 6 additions & 5 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,15 @@ Recent contributors
- EBatTiVo <[email protected]>
- Elias Ku <[email protected]>
- Eric B <[email protected]>
- Gabor Csomak <[email protected]>
- giabao <[email protected]>
- GitHub <[email protected]>
- grosmar <[email protected]>
- Ilya Kuzmichev <[email protected]>
- Ilya Kuzmichev <[email protected]>
- Ilya Kuzmichev <[email protected]>
- isBatak <[email protected]>
- sganapavarapu1 <[email protected]>
- Srikanth Ganapavarapu <[email protected]>
- Usievaład Čorny <[email protected]>
- Yannick Dominguez <[email protected]>
- yannick <[email protected]>
- Usievaład Kimajeŭ <[email protected]>

All contributors
-----------------------------------
Expand Down Expand Up @@ -49,9 +47,11 @@ All contributors
- fkorotkov <[email protected]>
- Gabor Csomak <[email protected]>
- giabao <[email protected]>
- GitHub <[email protected]>
- Gregory.Shrago <[email protected]>
- grosmar <[email protected]>
- Hays Clark <[email protected]>
- Ilya Kuzmichev <[email protected]>
- Ilya Kuzmichev <[email protected]>
- Ilya Kuzmichev <[email protected]>
- impaler <[email protected]>
Expand All @@ -73,6 +73,7 @@ All contributors
- Tim Hepner <[email protected]>
- Todd Brannam <[email protected]>
- Usievaład Čorny <[email protected]>
- Usievaład Kimajeŭ <[email protected]>
- Vassiliy Kudryashov <[email protected]>
- vaukalak <lahmataja.pa4vara@gmia>
- vladimir.krivosheev <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion idea_v14.1.5.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
idea.version=14.1.5

# Human-readable versions of IDEA that this build is compatible with.
plugin.compatibility.description=IDEA 14.1.5 and 14.1.6
plugin.compatibility.description=IDEA 14.1.5 and later 14.1.x versions.

# ###################################################
# IDEA build IDs that are compatible with this plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,11 @@
package org.jetbrains.jps.haxe.build;

import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.module.Module;
import com.intellij.openapi.projectRoots.Sdk;
import com.intellij.plugins.haxe.HaxeCommonBundle;
import com.intellij.plugins.haxe.config.HaxeTarget;
import com.intellij.plugins.haxe.config.sdk.HaxeSdkAdditionalDataBase;
import com.intellij.plugins.haxe.module.HaxeModuleSettingsBase;
import com.intellij.plugins.haxe.util.HaxeCommonCompilerUtil;
import com.intellij.rt.execution.testFrameworks.ProcessBuilder;
import com.intellij.util.Function;
import com.intellij.util.containers.ContainerUtil;
import org.jetbrains.annotations.NonNls;
Expand Down
6 changes: 5 additions & 1 deletion src/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,18 @@
<depends optional="true" config-file="flex-debugger-support.xml">com.intellij.flex</depends>
<depends optional="true" config-file="debugger-support.xml">com.intellij.modules.ultimate</depends>

<version>0.10.0 for @plugin.compatibility.description@</version>
<version>0.10.1 for @plugin.compatibility.description@</version>
<change-notes>
<![CDATA[
<p>This build is compatible with @plugin.compatibility.description@</p>
<p>It was built using IDEA build @idea.sdk.version@</p>
<p/>
<p>0.10.1: (community release)</p>
<ul>
<li>Stop using the classpath to auto-add external libraries to projects. (issues #477 #100)</li>
<li>Fix re-ordering imports in certain situations. (issue #494)</li>
<li>Fix 'never' setter. (issue #486)</li>
<li>Change class paths for external libraries on OSX.</li>
<li>Fixed creating classes in TEST source roots</li>
<li>Fixed debug Flash on Haxe-compiler target</li>
<li>Fixed crash on MACRO_CLASS_LIST assert</li>
Expand Down

0 comments on commit 4747103

Please sign in to comment.