Skip to content

Commit 77d3fd3

Browse files
committed
Try to fix problems with MkDocs rendering
1 parent 1d8da0e commit 77d3fd3

File tree

1 file changed

+1
-32
lines changed

1 file changed

+1
-32
lines changed

doc/maintainers/releases.md

Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -45,25 +45,13 @@ Examples:
4545
* `1.7.0.2`: continuing development on pre-release branch
4646
* `1.7.0.3`: second release candidate for first release of v1.7.x series (`v1.7`
4747
branch)
48-
49-
50-
5148
* `1.7.1`: first release of the 1.7.x series (`release` branch)
52-
53-
54-
5549
* `1.7.2.0`: development for second release of 1.7.x series (`stable` branch)
5650
* `1.7.2.1`: release candidate for second release of 1.7.x series (`stable`
5751
branch)
58-
59-
60-
6152
* `1.7.3`: second release of 1.7.x series (`release` branch)
6253
* `1.7.3.1`: first hackage-only patch of 1.7.3 (`release` branch)
6354
* `1.7.3.2`: second hackage-only patch of 1.7.3 (`release` branch)
64-
65-
66-
6755
* `1.8.0`: unstable development code (`master` branch)
6856
* `1.8.0.20181004`: pre-release snapshot of unstable version (`master` branch)
6957

@@ -80,10 +68,7 @@ Examples:
8068
nightly (go over the extra-deps too) and ensure the project builds and tests
8169
pass. For example:
8270

83-
84-
~~~
85-
$ stack build --stack-yaml=… --haddock --test --bench --no-run-benchmarks
86-
~~~
71+
$ stack build --stack-yaml=… --haddock --test --bench --no-run-benchmarks
8772

8873
7. Ensure integration tests pass on a Windows, macOS, and Linux. Do so by
8974
checking that the latest nightly build for the `master` branch succeeded in
@@ -117,8 +102,6 @@ branch.
117102
will be the next final (non-RC) release (e.g. `v2.1.1`).
118103
* add new "Unreleased changes" section:
119104

120-
121-
~~~
122105
## Unreleased changes
123106

124107
Release notes:
@@ -132,7 +115,6 @@ branch.
132115
Other enhancements:
133116

134117
Bug fixes:
135-
~~~
136118

137119
### D: In the release candidate branch
138120

@@ -241,9 +223,7 @@ Edit the draft
241223
to the release and add it to the description. For example, use:
242224

243225

244-
~~~
245226
$ git shortlog -s origin/release..HEAD|sed $'s/^[0-9 \t]*/* /'|grep -v azure-pipelines|LC_ALL=C sort -f
246-
~~~
247227

248228
Publish the GitHub release.
249229

@@ -316,8 +296,6 @@ In either the `stable` branch or, in the case of a release candidate, the
316296
* `ChangeLog.md`: Add an “Unreleased changes” section (update the “changes
317297
since” version):
318298

319-
320-
~~~
321299
## Unreleased changes
322300

323301
Release notes:
@@ -331,7 +309,6 @@ In either the `stable` branch or, in the case of a release candidate, the
331309
Other enhancements:
332310

333311
Bug fixes:
334-
~~~
335312

336313
### G: Update the repository's issue and pull request templates
337314

@@ -367,24 +344,16 @@ Update the fpco/stack-build Docker images with new version:
367344
released Stack version):
368345

369346

370-
~~~
371347
FROM $DOCKER_REPO:lts-X.Z
372348
ARG STACK_VERSION=X.Y.Z
373349
RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack'
374-
~~~
375350

376351
* Run `./build.sh lts-X.Y` and then test that the new image has the new version
377352
of Stack. For example:
378353

379-
380-
~~~
381354
$ docker run --rm fpco/stack-build:lts stack --version
382-
~~~
383355

384356
* Run the following command to push the new image to the registry:
385357

386-
387-
~~~
388358
$ ./build.sh --push lts-X.Y
389359
$ ./build.sh --push --small lts-X.Y
390-
~~~

0 commit comments

Comments
 (0)