Skip to content

Commit c3c3a5c

Browse files
committed
release/docs: add Fedora 23
1 parent e139bbd commit c3c3a5c

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

doc/MAINTAINER_GUIDE.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ See
3232
[stack-release-script's README](https://github.com/commercialhaskell/stack/blob/master/etc/scripts/README.md#prerequisites)
3333
for requirements to perform the release, and more details about the tool.
3434

35-
* Create a draft Github release with tag `vX.Y.Z` (where X.Y.Z is the stack
36-
package's version)
35+
* Create a
36+
[new draft Github release](https://github.com/commercialhaskell/stack/releases/new)
37+
with tag `vX.Y.Z` (where X.Y.Z is the stack package's version)
3738

3839
* On each machine you'll be releasing from, set environment variables:
3940
`GITHUB_AUTHORIZATION_TOKEN`, `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`

doc/install_and_upgrade.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,10 @@ Yosemite and Mavericks as well, and may also work on older versions (YMMV).
153153

154154
1. Add the appropriate source repository:
155155

156+
* Fedora 23 (x86_64)
157+
158+
curl -sSL https://s3.amazonaws.com/download.fpcomplete.com/fedora/23/fpco.repo | sudo tee /etc/yum.repos.d/fpco.repo
159+
156160
* Fedora 22 (x86_64)
157161

158162
curl -sSL https://s3.amazonaws.com/download.fpcomplete.com/fedora/22/fpco.repo | sudo tee /etc/yum.repos.d/fpco.repo
@@ -163,7 +167,7 @@ Yosemite and Mavericks as well, and may also work on older versions (YMMV).
163167

164168
2. Install:
165169

166-
* Fedora 22+
170+
* Fedora 22 and above
167171

168172
sudo dnf -y install stack
169173

etc/scripts/release.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,8 @@ rules global@Global{..} args = do
454454
, ("6", "el6") ]
455455
fedoraVersions =
456456
[ ("21", "fc21")
457-
, ("22", "fc22") ]
457+
, ("22", "fc22")
458+
, ("23", "fc23") ]
458459

459460
ubuntuDistro = "ubuntu"
460461
debianDistro = "debian"

etc/scripts/vagrant-releases.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [[ "$(basename "$0")" == "vagrant-releases.sh" ]]; then
2020
with_vagrant centos-6-i386 "--binary-variant=gmp4 --upload-label='Linux 32-bit, libgmp4 for CentOS 6.x' release"
2121
elif [[ "$(basename "$0")" == "vagrant-distros.sh" ]]; then
2222
with_vagrant debian-7-amd64 "upload-ubuntu-12.04 upload-ubuntu-14.04 upload-ubuntu-14.10 upload-ubuntu-15.04 upload-ubuntu-15.10 upload-debian-7 upload-debian-8 upload-arch"
23-
with_vagrant centos-7-x86_64 "upload-centos-7 upload-fedora-21 upload-fedora-22"
23+
with_vagrant centos-7-x86_64 "upload-centos-7 upload-fedora-21 upload-fedora-22 upload-fedora-23"
2424
with_vagrant centos-6-x86_64 "--binary-variant=gmp4 upload-centos-6"
2525
else
2626
echo "Unknown script name: $(basename "$0")" >&2

0 commit comments

Comments
 (0)