symbolize 1.0.0.3 → 1.0.0.4
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- README.md +1/−1
- symbolize.cabal +1/−1
CHANGELOG.md view
@@ -8,6 +8,10 @@ ## Unreleased +## 1.0.0.4++- Minor documentation improvements+ ## 1.0.0.3 - Minor documentation improvements
README.md view
@@ -140,5 +140,5 @@ ```haskell >>> Symbolize.globalSymbolTable-GlobalSymbolTable { count = 5, next = 10, contents = [(0,"hello"),(1,"world"),(2,"Roquefort"),(3,"Camembert"),(4,"Brie")] }+GlobalSymbolTable { size = 5, symbols = ["Brie","Camembert","Roquefort","hello","world"] } ```
symbolize.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: symbolize-version: 1.0.0.3+version: 1.0.0.4 synopsis: Efficient global Symbol table, with Garbage Collection. description: Symbols, also known as Atoms or Interned Strings, are a common technique to reduce memory usage and improve performance when using many small strings: