Skip to content

Commit

Permalink
Update project for 1.0.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
greglook committed May 22, 2017
1 parent 0c3bcd0 commit bcfdd01
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

...

## [1.0.1] - 2017-05-22

### Added
- Metaprojects can specify an `:inherit-leaky` vector to generate a leaky
profile for inclusion in subprojects' built artifacts.
Expand Down Expand Up @@ -137,7 +141,8 @@ instead of loading them all before running any commands.

Initial project release

[Unreleased]: https://github.com/amperity/lein-monolith/compare/1.0.0...HEAD
[Unreleased]: https://github.com/amperity/lein-monolith/compare/1.0.1...HEAD
[1.0.1]: https://github.com/amperity/lein-monolith/compare/1.0.0...1.0.1
[1.0.0]: https://github.com/amperity/lein-monolith/compare/0.3.2...1.0.0
[0.3.2]: https://github.com/amperity/lein-monolith/compare/0.3.1...0.3.2
[0.3.1]: https://github.com/amperity/lein-monolith/compare/0.3.0...0.3.1
Expand Down
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@ lein-monolith

[![CircleCI](https://circleci.com/gh/amperity/lein-monolith.svg?style=svg&circle-token=e57a92e79aa9113f1950498cbeeb0880c3f587d3)](https://circleci.com/gh/amperity/lein-monolith/tree/master)

`lein-monolith` is a Leiningen plugin to work with multiple projects inside a monorepo.
For an introduction to the project and some motivation, see this
`lein-monolith` is a Leiningen plugin to work with multiple projects inside a
monorepo. At a high level, the plugin gives you a way to:
- Share configuration across subprojects, such as `:repositories`,
`:managed-dependencies`, `:env`, etc.
- Run tasks across a multiple projects matching sophisticated selection
criteria.
- Run tasks across a globally-merged view of multiple projects.
- Query dependencies, generate graphs, and other utilities.

For a more detailed introduction to the project and some motivation, see this
[2016 Seajure presentation](https://docs.google.com/presentation/d/1jqYG2N2YalWdVG4oDqs1mua4hOyxVD_nejANrg6h8to/present).

## Installation
Expand Down
7 changes: 3 additions & 4 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
(defproject lein-monolith "1.0.1-SNAPSHOT"
(defproject lein-monolith "1.0.1"
:description "Leiningen plugin for managing subrojects within a monorepo."
:url "https://github.com/amperity/lein-monolith"
:license {:name "Apache License 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}

:deploy-branches ["master"]

:eval-in-leiningen true
:deploy-branches ["master"]

:dependencies
[[manifold "0.1.6"]
Expand All @@ -20,5 +19,5 @@
:ignore-ns #{clojure puget manifold}}

:profiles
{:dev {:plugins [[rfkm/lein-cloverage "1.0.8"]]
{:dev {:plugins [[lein-cloverage "1.0.9"]]
:dependencies [[org.clojure/clojure "1.8.0"]]}})

0 comments on commit bcfdd01

Please sign in to comment.