├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Readme.md ├── notes ├── 0.1.0.markdown ├── 0.1.1.markdown ├── 0.1.2.markdown ├── 0.2.0.markdown ├── 0.2.1.markdown ├── 0.3.0.markdown ├── 0.4.0.markdown ├── 0.5.0.markdown ├── 0.5.1.markdown ├── 0.6.0.markdown ├── 0.7.0.markdown ├── 0.7.1.markdown └── about.markdown ├── project ├── build.properties └── plugins.sbt └── src └── main └── scala ├── GithubRelease.scala └── SbtGithubReleasePlugin.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/Readme.md -------------------------------------------------------------------------------- /notes/0.1.0.markdown: -------------------------------------------------------------------------------- 1 | Initial release 2 | -------------------------------------------------------------------------------- /notes/0.1.1.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/notes/0.1.1.markdown -------------------------------------------------------------------------------- /notes/0.1.2.markdown: -------------------------------------------------------------------------------- 1 | Improved logging 2 | -------------------------------------------------------------------------------- /notes/0.2.0.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/notes/0.2.0.markdown -------------------------------------------------------------------------------- /notes/0.2.1.markdown: -------------------------------------------------------------------------------- 1 | - Fixed auto import for the setting keys and tasks 2 | -------------------------------------------------------------------------------- /notes/0.3.0.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/notes/0.3.0.markdown -------------------------------------------------------------------------------- /notes/0.4.0.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/notes/0.4.0.markdown -------------------------------------------------------------------------------- /notes/0.5.0.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/notes/0.5.0.markdown -------------------------------------------------------------------------------- /notes/0.5.1.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/notes/0.5.1.markdown -------------------------------------------------------------------------------- /notes/0.6.0.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/notes/0.6.0.markdown -------------------------------------------------------------------------------- /notes/0.7.0.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/notes/0.7.0.markdown -------------------------------------------------------------------------------- /notes/0.7.1.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/notes/0.7.1.markdown -------------------------------------------------------------------------------- /notes/about.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/notes/about.markdown -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 1.1.0 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /src/main/scala/GithubRelease.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/src/main/scala/GithubRelease.scala -------------------------------------------------------------------------------- /src/main/scala/SbtGithubReleasePlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohnosequences/sbt-github-release/HEAD/src/main/scala/SbtGithubReleasePlugin.scala --------------------------------------------------------------------------------