Skip to content

Commit f7727c4

Browse files
committed
Bump version to 0.1.5.0
1 parent 4b06874 commit f7727c4

File tree

3 files changed

+32
-14
lines changed

3 files changed

+32
-14
lines changed

ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Unreleased changes
1+
## 0.1.5.0
22

33
Major changes:
44

README.md

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ Downloads are available by operating system:
3232

3333
[Upgrade instructions](doc/install_and_upgrade.md#upgrade)
3434

35-
Note: if you are using cabal-install to install stack, you may need to pass a constraint to work around a [Cabal issue](https://github.com/haskell/cabal/issues/2759): `cabal install --constraint 'mono-traversable >= 0.9' stack`.
35+
Note: if you are using cabal-install to install stack, you may need to pass a
36+
constraint to work around a
37+
[Cabal issue](https://github.com/haskell/cabal/issues/2759): `cabal install
38+
--constraint 'mono-traversable >= 0.9' stack`.
3639

3740
#### How to use
3841

@@ -61,21 +64,26 @@ Run `stack` for a complete list of commands.
6164

6265
#### How to contribute
6366

64-
This assumes that you have already installed a version of stack, and have `git` installed.
67+
This assumes that you have already installed a version of stack, and have `git`
68+
installed.
6569

6670
1. Clone `stack` from git with
6771
`git clone https://github.com/commercialhaskell/stack.git`.
6872
2. Enter into the stack folder with `cd stack`.
6973
3. Build `stack` using a pre-existing `stack` install with
7074
`stack setup && stack build`.
71-
4. Once `stack` finishes building, check the stack version with
75+
4. Once `stack` finishes building, check the stack version with
7276
`stack --version`. Make sure the version is the latest.
73-
5. Look for issues tagged with [`newcomer` and `awaiting-pr` labels](https://github.com/commercialhaskell/stack/issues?q=is%3Aopen+is%3Aissue+label%3Anewcomer+label%3Aawaiting-pr)
77+
5. Look for issues tagged with
78+
[`newcomer` and `awaiting-pr` labels](https://github.com/commercialhaskell/stack/issues?q=is%3Aopen+is%3Aissue+label%3Anewcomer+label%3Aawaiting-pr)
7479

7580
Build from source as a one-liner:
7681

7782
```bash
78-
git clone https://github.com/commercialhaskell/stack.git && cd stack && stack setup && stack build
83+
git clone https://github.com/commercialhaskell/stack.git && \
84+
cd stack && \
85+
stack setup && \
86+
stack build
7987
```
8088

8189
#### Complete guide to stack
@@ -122,16 +130,26 @@ can address these concerns.
122130

123131
* Project Documentation
124132
* [Maintainer Guide](doc/MAINTAINER_GUIDE.md): includes releasing information
125-
* [Signing Key](doc/SIGNING_KEY.md): downloadable stack binaries are signed with this key
133+
* [Signing Key](doc/SIGNING_KEY.md): downloadable stack binaries are signed
134+
with this key
126135
* Tool Documentation
127-
* [Build Command](doc/build_command.md): reference for the syntax of the build command and the command line targets
136+
* [Build Command](doc/build_command.md): reference for the syntax of the
137+
build command and the command line targets
128138
* [Dependency Visualization](doc/dependency_visualization.md): uses Graphviz
129139
* [Docker Integration](doc/docker_integration.md)
130-
* [FAQ](doc/faq.md): frequently asked questions about detailed or specific use-cases
131-
* [Install/Upgrade](doc/install_and_upgrade.md): a list of downloads available by operating system, installation instructions, and upgrade instructions
140+
* [FAQ](doc/faq.md): frequently asked questions about detailed or specific
141+
use-cases
142+
* [Install/Upgrade](doc/install_and_upgrade.md): a list of downloads
143+
available by operating system, installation instructions, and upgrade
144+
instructions
132145
* [Nonstandard Project Initialization](doc/nonstandard_project_init.md)
133146
* [Shell Autocompletion](doc/shell_autocompletion.md)
134-
* [User Guide](doc/GUIDE.md): in-depth tutorial covering the most common use cases and all major stack features (requires no prior Haskell tooling experience)
135-
* [YAML Configuration](doc/yaml_configuration.md): reference for writing `stack.yaml` files
147+
* [User Guide](doc/GUIDE.md): in-depth tutorial covering the most common use
148+
cases and all major stack features (requires no prior Haskell tooling
149+
experience)
150+
* [YAML Configuration](doc/yaml_configuration.md): reference for writing
151+
`stack.yaml` files
136152
* Advanced Documentation
137-
* [Architecture](doc/architecture.md): reference for people curious about stack internals, wanting to get involved deeply in the codebase, or wanting to use stack in unusual ways
153+
* [Architecture](doc/architecture.md): reference for people curious about
154+
stack internals, wanting to get involved deeply in the codebase, or
155+
wanting to use stack in unusual ways

stack.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: stack
2-
version: 0.1.4.1
2+
version: 0.1.5.0
33
synopsis: The Haskell Tool Stack
44
description: Please see the README.md for usage information, and
55
the wiki on Github for more details. Also, note that

0 commit comments

Comments
 (0)