fakedata 1.0 → 1.0.1
raw patch · 3 files changed
+23/−11 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +6/−3
- README.md +14/−1
- fakedata.cabal +3/−7
ChangeLog.md view
@@ -1,12 +1,15 @@ # Changelog for fakedata +## 1.0.1++* Improve README with use cases+* [Cleanup dependencies](https://github.com/fakedata-haskell/fakedata/pull/38)+ ## 1.0 ### Breaking changes -* [Make `Fake` as monad- transformer.](https://github.com/fakedata-haskell/fakedata/pull/32). This- makes writing code with good performance easily.+* [Make `Fake` as monad transformer](https://github.com/fakedata-haskell/fakedata/pull/32). This makes writing code with good performance easily. * Rename `celebrities` to `actors` in Faker.TvShow.Buffy module. * Rename `celebrities` to `actors` in Faker.TvShow.FreshPrinceOfBelAir module. * Removed module `Faker.Movie.Hobbit`. Use `Faker.Fantasy.Tolkien`
README.md view
@@ -1,4 +1,4 @@-+ [](https://hackage.haskell.org/package/fakedata) [](http://stackage.org/nightly/package/fakedata)@@ -33,6 +33,19 @@ fake data such as names, addressess and phone numbers. Note that it directly uses the source data from that library, so the quality of fake data is quite high!++This packages comes in handy when you have to generate large amount of+real like data for various purposes. I have personally used it for+websites where it needs some realistic data in the initial stage,+loading database with real like values etc. There are companies which+have used this [for sophisphicated testing+purpose](https://www.reddit.com/r/haskell/comments/o5n71e/fakedata10_haskell_library_for_producing_quality/h2qxw8a?utm_source=share&utm_medium=web2x&context=3).++Additionly, there are two other packages for creating generators which+is useful property testing:++* [fakedata-quickcheck](https://github.com/fakedata-haskell/fakedata-quickcheck)+* [hedgehog-fakedata](https://github.com/parsonsmatt/hedgehog-fakedata) Tutorial --------
fakedata.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: fakedata-version: 1.0+version: 1.0.1 synopsis: Library for producing fake data description: Please see the README on GitHub at <https://github.com/psibi/fakedata#readme> category: Random, Fake, FakeData@@ -677,8 +677,7 @@ hs-source-dirs: src build-depends:- QuickCheck- , attoparsec+ attoparsec , base >=4.7 && <5 , bytestring , containers@@ -688,7 +687,6 @@ , filepath , hashable , random- , regex-tdfa , string-random , template-haskell , text@@ -827,8 +825,7 @@ bench ghc-options: -O2 build-depends:- QuickCheck- , attoparsec+ attoparsec , base >=4.7 && <5 , bytestring , containers@@ -841,7 +838,6 @@ , gauge , hashable , random- , regex-tdfa , string-random , template-haskell , text