haskintex 0.8.0.1 → 0.8.0.2
raw patch · 5 files changed
+22/−31 lines, 5 filesdep ~textsetup-changedPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: text
API changes (from Hackage documentation)
Files
- README.md +0/−10
- Setup.hs +0/−2
- changelog.md +3/−0
- haskintex.cabal +10/−19
- readme.md +9/−0
− README.md
@@ -1,10 +0,0 @@-# The *haskintex* program--The *haskintex* program is a tool that reads a LaTeX file and evaluates Haskell expressions contained-in some specific commands and environments. It allows you to define your own functions, use any GHC Haskell language-extension and, in brief, anything you can do within Haskell. You can freely add any Haskell code you need, and make-this code appear *optionally* in the LaTeX output. It is a tiny program, and therefore, easy to understand, use and-predict.--For more details, read the-[homepage of the project](http://daniel-diaz.github.io/projects/haskintex).
− Setup.hs
@@ -1,2 +0,0 @@-import Distribution.Simple-main = defaultMain
+ changelog.md view
@@ -0,0 +1,3 @@+## 0.8.0.2+* Metadata update.+* Allow more recent versions of `text`.
haskintex.cabal view
@@ -1,32 +1,23 @@ name: haskintex-version: 0.8.0.1+version: 0.8.0.2 synopsis: Haskell Evaluation inside of LaTeX code. description: The /haskintex/ (Haskell in LaTeX) program is a tool that reads a LaTeX file and evaluates Haskell expressions contained in some specific commands and environments. It allows you to define your own functions, use any GHC Haskell language- extension and, in brief, anything you can do within Haskell.+ extension and, in summary, anything you can do within Haskell. Additionally, it is possible to include expressions of 'LaTeX' type (see /HaTeX/ package) and render them as LaTeX code. You can freely add any Haskell code you need, and make this code appear /optionally/ in the LaTeX output. It is a tiny program, and therefore, easy to understand, use and predict.- .- Additions from last version:- .- * /haskintex/ is now able to detect that is running on a cabal sandbox, and will use the sandbox package- db if this is the case. Unless the flag @-nosandbox@ is given, in which case the sandbox will be ignored.- .- * New flag @-nosandbox@. Ignore sandbox if /haskintex/ runs on one.- .-homepage: http://daniel-diaz.github.io/projects/haskintex-bug-reports: https://github.com/Daniel-Diaz/haskintex/issues+homepage: https://daniel-casanueva.gitlab.io/haskell/haskintex+bug-reports: https://gitlab.com/daniel-casanueva/haskell/haskintex/-/issues license: BSD3 license-file: LICENSE-author: Daniel Díaz-maintainer: dhelta.diaz@gmail.com+author: Daniel Casanueva (daniel.casanueva `at` proton.me)+maintainer: Daniel Casanueva (daniel.casanueva `at` proton.me) category: LaTeX build-type: Simple-extra-source-files: README.md- -- examples- examples/fact.htex+extra-doc-files: readme.md, changelog.md+extra-source-files: examples/fact.htex examples/hatex.htex examples/sine.htex examples/io.htex@@ -34,7 +25,7 @@ examples/string.htex examples/threaded.htex examples/memo.htex-cabal-version: >=1.10+cabal-version: 1.18 executable haskintex hs-source-dirs: main@@ -48,7 +39,7 @@ default-language: Haskell2010 build-depends: base >= 4.7 && < 5 , transformers >= 0.3.0.0- , text >= 0.11.2.3 && < 2+ , text >= 0.11.2.3 , bytestring >= 0.10.4 , directory >= 1.2.0 && < 1.4 , filepath >= 1.1.0 && < 1.5
+ readme.md view
@@ -0,0 +1,9 @@+# The *haskintex* program++The *haskintex* program is a tool that reads a LaTeX file and evaluates Haskell expressions contained+in some specific commands and environments. It allows you to define your own functions, use any GHC Haskell language+extension and, in brief, anything you can do within Haskell. You can freely add any Haskell code you need, and make+this code appear *optionally* in the LaTeX output. It is a tiny program, and therefore, easy to understand, use and+predict.++For more details, read the [homepage of the project](https://daniel-casanueva.gitlab.io/haskell/haskintex).