This commit is contained in:
Aleksey Uymanov 2021-02-25 16:25:50 +05:00
parent 614ef52241
commit 3239daf267
3 changed files with 10 additions and 10 deletions

View File

@ -1,6 +1,6 @@
# Changelog # Changelog
`compa4ek` uses [PVP Versioning][1]. `openapi-diff` uses [PVP Versioning][1].
## 0.0.0.0 ## 0.0.0.0

View File

@ -1,8 +1,8 @@
# compa4ek # openapi-diff
[![Hackage](https://img.shields.io/hackage/v/compa4ek.svg?logo=haskell)](https://hackage.haskell.org/package/compa4ek) [![Hackage](https://img.shields.io/hackage/v/openapi-diff.svg?logo=haskell)](https://hackage.haskell.org/package/openapi-diff)
[![Stackage Lts](http://stackage.org/package/compa4ek/badge/lts)](http://stackage.org/lts/package/compa4ek) [![Stackage Lts](http://stackage.org/package/openapi-diff/badge/lts)](http://stackage.org/lts/package/openapi-diff)
[![Stackage Nightly](http://stackage.org/package/compa4ek/badge/nightly)](http://stackage.org/nightly/package/compa4ek) [![Stackage Nightly](http://stackage.org/package/openapi-diff/badge/nightly)](http://stackage.org/nightly/package/openapi-diff)
[![MIT license](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) [![MIT license](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
Compatibility checker for OpenAPI Compatibility checker for OpenAPI

View File

@ -1,5 +1,5 @@
cabal-version: 2.4 cabal-version: 2.4
name: compa4ek name: openapi-diff
version: 0.0.0.0 version: 0.0.0.0
synopsis: Compatibility checker for OpenAPI synopsis: Compatibility checker for OpenAPI
description: Compatibility checker for OpenAPI description: Compatibility checker for OpenAPI
@ -77,21 +77,21 @@ library
, OpenAPI.Checker.Validate , OpenAPI.Checker.Validate
, OpenAPI.Checker.Validate.Monad , OpenAPI.Checker.Validate.Monad
executable compa4ek executable openapi-diff
import: common-options import: common-options
hs-source-dirs: app hs-source-dirs: app
main-is: Main.hs main-is: Main.hs
build-depends: compa4ek build-depends: openapi-diff
ghc-options: -threaded ghc-options: -threaded
-rtsopts -rtsopts
-with-rtsopts=-N -with-rtsopts=-N
test-suite compa4ek-test test-suite openapi-diff-test
import: common-options import: common-options
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
hs-source-dirs: test hs-source-dirs: test
main-is: Spec.hs main-is: Spec.hs
build-depends: compa4ek build-depends: openapi-diff
ghc-options: -threaded ghc-options: -threaded
-rtsopts -rtsopts
-with-rtsopts=-N -with-rtsopts=-N