dl-fedora 0.9.4 → 0.9.5
raw patch · 3 files changed
+7/−2 lines, 3 filesdep ~optparse-applicative
Dependency ranges changed: optparse-applicative
Files
- CHANGELOG.md +3/−0
- dl-fedora.cabal +2/−2
- src/Main.hs +2/−0
CHANGELOG.md view
@@ -1,5 +1,8 @@ # Changelog +## 0.9.5 (2023-04-13)+- add F38 Sericea sway ostree image+ ## 0.9.4 (2023-03-23) - add new F38 spins: Budgie and Sway - change koji target to --koji mirror option
dl-fedora.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: dl-fedora-version: 0.9.4+version: 0.9.5 synopsis: Fedora image download tool description: Tool to download Fedora iso and image files -- can change to GPL-3.0-or-later with Cabal-2.2@@ -15,7 +15,7 @@ build-type: Simple extra-doc-files: README.md , CHANGELOG.md-tested-with: GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.7, GHC == 9.4.4+tested-with: GHC == 9.4.4, GHC == 9.2.7, GHC == 9.0.2, GHC == 8.10.7, GHC == 8.8.4, GHC == 8.6.5, GHC == 8.4.4, GHC == 8.2.2 source-repository head
src/Main.hs view
@@ -56,6 +56,7 @@ | Workstation | Silverblue | Kinoite+ | Sericea | Budgie -- first spin used below | Cinnamon | I3@@ -492,6 +493,7 @@ editionType :: FedoraEdition -> String editionType Server = "dvd" editionType Kinoite = "ostree"+editionType Sericea = "ostree" editionType Silverblue = "ostree" editionType Everything = "netinst" editionType Cloud = "Base"