Skip to content

Commit

Permalink
fix for binary, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
yaxu committed Jul 26, 2019
1 parent 402af9c commit c3b4460
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# TidalCycles log of changes

## 1.1.2 - Eccy Road

* Usability fix for `binary` / `binaryN` (use squeezeJoin on input pattern)

## 1.1.1 - Chelsea Park

* Useability fixes for `binary` / `binaryN` / `ascii` @yaxu
* Usability fixes for `binary` / `binaryN` / `ascii` @yaxu

## 1.1.0 - Brincliffe Edge

Expand Down
2 changes: 1 addition & 1 deletion src/Sound/Tidal/UI.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1840,7 +1840,7 @@ _binary :: Data.Bits.Bits b => Int -> b -> Pattern Bool
_binary n num = listToPat $ __binary n num

binaryN :: Int -> Pattern Int -> Pattern Bool
binaryN n p = innerJoin $ _binary n <$> p
binaryN n p = squeezeJoin $ _binary n <$> p

binary :: Pattern Int -> Pattern Bool
binary = binaryN 8
Expand Down
2 changes: 1 addition & 1 deletion src/Sound/Tidal/Version.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Sound.Tidal.Version where

tidal_version :: String
tidal_version = "1.1.1"
tidal_version = "1.1.2"
2 changes: 1 addition & 1 deletion tidal.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: tidal
version: 1.1.1
version: 1.1.2
synopsis: Pattern language for improvised music
-- description:
homepage: http://tidalcycles.org/
Expand Down

0 comments on commit c3b4460

Please sign in to comment.