From 0cecd291d429ceec71aabd3e06c098b0c0c0f8fd Mon Sep 17 00:00:00 2001 From: Alejandro Serrano Date: Mon, 13 Jan 2020 10:05:23 +0100 Subject: [PATCH] Prepare for 0.1 (#71) --- .gitignore | 2 +- cabal.project | 10 ++++++++++ compendium-client/compendium-client.cabal | 17 ++++++++++------- core/schema/mu-schema.cabal | 16 +++++++++------- 4 files changed, 30 insertions(+), 15 deletions(-) create mode 100644 cabal.project diff --git a/.gitignore b/.gitignore index ed52919f..69b41819 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ stack*.yaml.lock .stack-work *~ -dist +dist* *.pyc ## User files diff --git a/cabal.project b/cabal.project new file mode 100644 index 00000000..7f27ab2f --- /dev/null +++ b/cabal.project @@ -0,0 +1,10 @@ +packages: compendium-client/ + core/schema/ + core/rpc/ + adapter/avro/ + adapter/protobuf/ + adapter/persistent/ + grpc/client/ + grpc/server/ + +extra-packages: network==3.1.0.1 diff --git a/compendium-client/compendium-client.cabal b/compendium-client/compendium-client.cabal index 05e86194..75cfde6f 100644 --- a/compendium-client/compendium-client.cabal +++ b/compendium-client/compendium-client.cabal @@ -1,18 +1,21 @@ cabal-version: >=1.10 - name: compendium-client -version: 0.1.0.0 -synopsis: Client for the compendium schema server --- description: --- bug-reports: +version: 0.1.0.1 +synopsis: Client for the Compendium schema server +description: Client for the schema server license: Apache-2.0 license-file: LICENSE author: Alejandro Serrano maintainer: alejandro.serrano@47deg.com --- copyright: +copyright: Copyright © 2019-2020 category: Network build-type: Simple --- extra-source-files: README.md, CHANGELOG.md +homepage: https://higherkindness.io/mu-haskell/ +bug-reports: https://github.com/higherkindness/mu-haskell/issues + +source-repository head + type: git + location: https://github.com/higherkindness/mu-haskell library exposed-modules: Compendium.Client diff --git a/core/schema/mu-schema.cabal b/core/schema/mu-schema.cabal index 112d516f..0d2874c2 100644 --- a/core/schema/mu-schema.cabal +++ b/core/schema/mu-schema.cabal @@ -1,21 +1,23 @@ cabal-version: >=1.10 --- Initial package description 'mu-haskell.cabal' generated by 'cabal --- init'. For further documentation, see --- http://haskell.org/cabal/users-guide/ - name: mu-schema version: 0.1.0.0 synopsis: Format-independent schemas for serialization --- description: +description: With @mu-schema@ you can describe schemas using type-level constructs, and derive serializers from those. See @mu-avro@, @mu-protobuf@ for the actual adapters. -- bug-reports: license: Apache-2.0 license-file: LICENSE -author: Alejandro Serrano +author: Alejandro Serrano, Flavio Corpa maintainer: alejandro.serrano@47deg.com --- copyright: +copyright: Copyright © 2019-2020 category: Network build-type: Simple extra-source-files: CHANGELOG.md +homepage: https://higherkindness.io/mu-haskell/ +bug-reports: https://github.com/higherkindness/mu-haskell/issues + +source-repository head + type: git + location: https://github.com/higherkindness/mu-haskell library exposed-modules: Mu.Schema