diff --git a/README.md b/README.md index 779b0d7..d2de481 100644 --- a/README.md +++ b/README.md @@ -1,65 +1,65 @@ -# Git Flow Integration for Intellij - - -An intelliJ plugin providing a UI layer for git-flow, which in itself is a collection of Git extensions to provide high-level repository operations for Vincent [Driessen's branching model](http://nvie.com/git-model). - -![screenshot](http://opherv.github.io/gitflow4idea/images/gitflow.jpg) - -## Supporting my work (so that the plugin doesn't die) - -Do you use this free software at work? Great! Would you like it to stay free? Of course you do. - -I'm not a Java developer. In fact, I don't even like Java. Still I've been actively supporting this plugin for the past 5+ years on my own free time. - -If saved you or your company time and effort, please consider supporting me by buying me a cup of coffee. -Better yet, get your boss to donate 10 cups. It's company money, they won't mind. - -[![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/R6R0TFS7) - -## Getting started - -For the best introduction to get started with `git flow`, please read Jeff Kreeftmeijer's blog post: - -[http://jeffkreeftmeijer.com/2010/why-arent-you-using-git-flow/](http://jeffkreeftmeijer.com/2010/why-arent-you-using-git-flow/) - -Or have a look at this [cheat sheet](http://danielkummer.github.io/git-flow-cheatsheet/) by Daniel Kummer: - -## Who and why - -This plugin was created by [Opher Vishnia](http://www.opherv.com), after I couldn't find any similar implementation. -I saw this [suggestion page](http://youtrack.jetbrains.com/issue/IDEA-65491) on the JetBrains site has more than 220 likes and 80 comments, and decided to take up the gauntlet :) - -Huge shoutout [to Kirill Likhodedov](https://github.com/klikh), who wrote much of the original git4idea plugin, without which this plugin could not exist - -## Installation - -The plugin is available via the IntelliJ plugin manager. Just search for "Git Flow Integration" to get the latest version! - -(The plugin requires that you have gitflow installed. I *highly* recommend using the [AVH edition](https://github.com/petervanderdoes/gitflow), rather than [Vanilla Git Flow](https://github.com/nvie/gitflow) since the original isn't being maintained anymore) - -**Mac/Linux users:** - -If you're running into issues like getting -`Gitflow is not installed` -or -`git: 'flow' is not a git command. See 'git --help'.` - -Please be sure to check out [this thread](https://github.com/OpherV/gitflow4idea/issues/7) - - -## Caveats - -While the plugin is operational and contains all basic functions (init/feature/release/hotfix), it may contains bugs. With your help I'll be able to find and zap them all. - -## Helping out - -This project is under active development. -If you encounter any bug or an issue, I encourage you to add the them to the [Issues list](https://github.com/OpherV/gitflow4idea/issues) on Github. -Feedback and suggestions are also very welcome. - -## License - -This plugin is under the [Apache 2.0 license](http://www.apache.org/licenses/LICENSE-2.0.html). -Copyright 2013-2018, Opher Vishnia. - - +# Git Flow Integration for Intellij + + +An intelliJ plugin providing a UI layer for git-flow, which in itself is a collection of Git extensions to provide high-level repository operations for Vincent [Driessen's branching model](http://nvie.com/git-model). + +![screenshot](http://opherv.github.io/gitflow4idea/images/gitflow.jpg) + +## Supporting my work (so that the plugin doesn't die) + +Do you use this free software at work? Great! Would you like it to stay free? Of course you do. + +I'm not a Java developer. In fact, I don't even like Java. Still I've been actively supporting this plugin for the past 5+ years on my own free time. + +If saved you or your company time and effort, please consider supporting me by buying me a cup of coffee. +Better yet, get your boss to donate 10 cups. It's company money, they won't mind. + +[![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/R6R0TFS7) + +## Getting started + +For the best introduction to get started with `git flow`, please read Jeff Kreeftmeijer's blog post: + +[http://jeffkreeftmeijer.com/2010/why-arent-you-using-git-flow/](http://jeffkreeftmeijer.com/2010/why-arent-you-using-git-flow/) + +Or have a look at this [cheat sheet](http://danielkummer.github.io/git-flow-cheatsheet/) by Daniel Kummer: + +## Who and why + +This plugin was created by [Opher Vishnia](http://www.opherv.com), after I couldn't find any similar implementation. +I saw this [suggestion page](http://youtrack.jetbrains.com/issue/IDEA-65491) on the JetBrains site has more than 220 likes and 80 comments, and decided to take up the gauntlet :) + +Huge shoutout [to Kirill Likhodedov](https://github.com/klikh), who wrote much of the original git4idea plugin, without which this plugin could not exist + +## Installation + +The plugin is available via the IntelliJ plugin manager. Just search for "Git Flow Integration" to get the latest version! + +(The plugin requires that you have gitflow installed. I *highly* recommend using the [AVH edition](https://github.com/petervanderdoes/gitflow), rather than [Vanilla Git Flow](https://github.com/nvie/gitflow) since the original isn't being maintained anymore) + +**Mac/Linux users:** + +If you're running into issues like getting +`Gitflow is not installed` +or +`git: 'flow' is not a git command. See 'git --help'.` + +Please be sure to check out [this thread](https://github.com/OpherV/gitflow4idea/issues/7) + + +## Caveats + +While the plugin is operational and contains all basic functions (init/feature/release/hotfix), it may contains bugs. With your help I'll be able to find and zap them all. + +## Helping out + +This project is under active development. +If you encounter any bug or an issue, I encourage you to add the them to the [Issues list](https://github.com/OpherV/gitflow4idea/issues) on Github. +Feedback and suggestions are also very welcome. + +## License + +This plugin is under the [Apache 2.0 license](http://www.apache.org/licenses/LICENSE-2.0.html). +Copyright 2013-2019, Opher Vishnia. + + diff --git a/build.gradle b/build.gradle index 16d72e7..a0c0ca3 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ compileJava { } group 'gitflow4idea' -version '0.6.9' +version '0.7.0' sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 @@ -29,11 +29,20 @@ intellij { patchPluginXml { pluginId "Gitflow" pluginDescription 'Git Flow Integration' - version '0.6.9' + version '0.7.0' sinceBuild '182.0' untilBuild '192.*' changeNotes """ +

Changelog for 0.7.0

+ +

Changelog for 0.6.9