├── .github └── workflows │ ├── ci.yml │ └── cla.yml ├── .gitignore ├── .jvmopts ├── CODE_OF_CONDUCT.md ├── LICENSE ├── NOTICE ├── README.md ├── community-projects.txt ├── hand-written.md ├── project ├── build.properties └── plugins.sbt ├── projects-2.13.md ├── release-notes.html └── src └── main └── scala ├── GitInfo.scala ├── MakeDownloadPage.scala ├── MakeReleaseNotes.scala └── TargetLanguage.scala /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala/make-release-notes/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala/make-release-notes/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | release-notes*.md 3 | -------------------------------------------------------------------------------- /.jvmopts: -------------------------------------------------------------------------------- 1 | -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala/make-release-notes/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala/make-release-notes/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala/make-release-notes/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala/make-release-notes/HEAD/README.md -------------------------------------------------------------------------------- /community-projects.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hand-written.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala/make-release-notes/HEAD/hand-written.md -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.7 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala/make-release-notes/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /projects-2.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala/make-release-notes/HEAD/projects-2.13.md -------------------------------------------------------------------------------- /release-notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala/make-release-notes/HEAD/release-notes.html -------------------------------------------------------------------------------- /src/main/scala/GitInfo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala/make-release-notes/HEAD/src/main/scala/GitInfo.scala -------------------------------------------------------------------------------- /src/main/scala/MakeDownloadPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala/make-release-notes/HEAD/src/main/scala/MakeDownloadPage.scala -------------------------------------------------------------------------------- /src/main/scala/MakeReleaseNotes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala/make-release-notes/HEAD/src/main/scala/MakeReleaseNotes.scala -------------------------------------------------------------------------------- /src/main/scala/TargetLanguage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala/make-release-notes/HEAD/src/main/scala/TargetLanguage.scala --------------------------------------------------------------------------------