Skip to content

Commit

Permalink
Bump versions for external ref and localize-dom (#1063)
Browse files Browse the repository at this point in the history
* Bump version for reflex-0.9.*

* Bump reflex versions for external ref and localize-dom, fix shell
  • Loading branch information
NCrashed authored Mar 16, 2024
1 parent fea1e2d commit 9e3a544
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 6 deletions.
9 changes: 9 additions & 0 deletions derivations/commutative-semigroups.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{ mkDerivation, base, containers, lib }:
mkDerivation {
pname = "commutative-semigroups";
version = "0.1.0.1";
sha256 = "0732d53b25fea4822ed8aefdc0aa5586db9a78f67db8cc796adabd614677aaae";
libraryHaskellDepends = [ base containers ];
description = "Commutative semigroups";
license = lib.licenses.bsd3;
}
1 change: 1 addition & 0 deletions overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,6 @@ in (self: super: let
dns = self.callPackage ./derivations/dns.nix {};
distributive = lib.dontCheck super.distributive;
hakyll = lib.dontCheck (lib.doJailbreak (self.callPackage ./derivations/hakyll.nix {}));
commutative-semigroups = self.callPackage ./derivations/commutative-semigroups.nix {};
}
)
5 changes: 5 additions & 0 deletions reflex-external-ref/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.1.0.0
=======

Add support for `reflex-0.9`

1.0.3.1
=======

Expand Down
4 changes: 2 additions & 2 deletions reflex-external-ref/reflex-external-ref.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: reflex-external-ref
version: 1.0.3.1
version: 1.1.0.0
synopsis: External reference with reactivity support
description:
The package provides you with `IORef` that has attached reflex `Event`. Each time
Expand Down Expand Up @@ -33,7 +33,7 @@ library
Reflex.ExternalRef
build-depends:
base >= 4.5 && < 4.15
, reflex >= 0.4 && < 0.9
, reflex >= 0.4 && < 0.10
, deepseq >= 1.4 && < 1.5
default-language: Haskell2010

Expand Down
4 changes: 4 additions & 0 deletions reflex-localize-dom/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.1.0.0

* Bump versions for new reflex.

# 1.0.3.0

* Allow `reflex-localize-1.1`
Expand Down
8 changes: 4 additions & 4 deletions reflex-localize-dom/reflex-localize-dom.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: reflex-localize-dom
version: 1.0.3.0
version: 1.1.0.0
synopsis: Helper widgets for reflex-localize
description: Library provides helpers for dynamic strings that depends on current selected language.
stability: Experimental
Expand Down Expand Up @@ -35,9 +35,9 @@ library
build-depends:
base >= 4.5 && < 4.15
, containers
, reflex >= 0.4 && < 0.9
, reflex-dom >= 0.6 && < 0.9
, reflex-localize >= 1.0 && < 1.2
, reflex >= 0.4 && < 0.10
, reflex-dom >= 0.6 && < 0.10
, reflex-localize >= 1.0 && < 1.3
, text
default-language: Haskell2010
default-extensions:
Expand Down

0 comments on commit 9e3a544

Please sign in to comment.