Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
Simon Brooke 2018-09-22 09:18:54 +01:00
commit 6c53fe71a8
4 changed files with 10 additions and 2 deletions

2
.gitignore vendored
View file

@ -12,3 +12,5 @@ pom.xml.asc
.lein-failures .lein-failures
.nrepl-port .nrepl-port
.cpcache/ .cpcache/
*.tar

View file

@ -6,6 +6,9 @@ All notable changes to this project will be documented in this file. This change
### Added ### Added
Mainly documentation and tidy-up; Beta release. Mainly documentation and tidy-up; Beta release.
## 0.1.4 - 2018-09-20
This is not anticipated to be the actual Beta release; it's a dummy run to test the release and deployment process. Some required features are still missing.
## 0.1.0 - 2018-06-17 ## 0.1.0 - 2018-06-17
### Added ### Added
Initial release. Initial release.

1
pkg/README Normal file
View file

@ -0,0 +1 @@
this directory is required by the release process

View file

@ -1,4 +1,4 @@
(defproject adl-support "0.1.4-SNAPSHOT" (defproject adl-support "0.1.5-SNAPSHOT"
:description "A small library of functions called by generated ADL code." :description "A small library of functions called by generated ADL code."
:url "https://github.com/simon-brooke/adl-support" :url "https://github.com/simon-brooke/adl-support"
:license {:name "MIT License" :license {:name "MIT License"
@ -11,8 +11,10 @@
[selmer "1.11.8"]] [selmer "1.11.8"]]
:plugins [[lein-codox "0.10.4"] :plugins [[lein-codox "0.10.4"]
[lein-release "1.1.3"]] [lein-release "1.0.5"]]
:deploy-repositories [["releases" :clojars]
["snapshots" :clojars]]
:codox {:metadata {:doc "FIXME: write docs"} :codox {:metadata {:doc "FIXME: write docs"}
:output-path "doc"} :output-path "doc"}