Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prep release #5

Merged
merged 2 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## 1.0.0 (2023-10-09)

- Initial release

35 changes: 35 additions & 0 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,38 @@
(using melange 0.1)

(name melange-json)

(generate_opam_files true)

(authors "glennsl")

(maintainers
"Antonio Nuno Monteiro <[email protected]>"
"Javier Ch\195\161varri <[email protected]>")

(license "LGPL-3.0-only" "MPL-2.0")

(homepage "https://github.com/melange-community/melange-json/")

(bug_reports "https://github.com/melange-community/melange-json/issues")

(source
(github melange-community/melange-json))

(package
(name melange-json)
(synopsis "Compositional JSON encode/decode library for Melange")
(description
"Provides encoders and decoders to convert JSON values into typed values. With the possibility to create custom encoders and decoders.")
(depends
(ocaml
(>= "5.1"))
(melange
(>= "2.0.0"))
(melange-jest :with-test)
(reason
(and
(>= "3.10.0")
:with-test))
(opam-check-npm-deps :with-test) ; todo: use with-dev-setup once opam 2.2 is out
(ocaml-lsp-server :with-test)))
32 changes: 16 additions & 16 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 8 additions & 15 deletions melange-json.opam
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Compositional JSON encode/decode library for Melange"
description: "Provides encoders and decoders to convert JSON values into typed values. With the possibility to create custom encoders and decoders."
description:
"Provides encoders and decoders to convert JSON values into typed values. With the possibility to create custom encoders and decoders."
maintainer: [
"Antonio Nuno Monteiro <[email protected]>"
"Javier Chávarri <[email protected]>"
]
authors: [
"glennsl"
]
authors: ["glennsl"]
license: ["LGPL-3.0-only" "MPL-2.0"]
homepage: "https://github.com/melange-community/melange-json/"
doc: "https://github.com/melange-community/melange-json/"
bug-reports: "https://github.com/melange-community/melange-json/issues"
depends: [
"dune" {>= "3.8"}
"ocaml"
"ocaml" {>= "5.1"}
"melange" {>= "2.0.0"}
"melange-jest" {with-test}
"reason" {with-test}
"opam-check-npm-deps" {with-test} # todo: use with-dev-setup once opam 2.2 is out
"reason" {>= "3.10.0" & with-test}
"opam-check-npm-deps" {with-test}
"ocaml-lsp-server" {with-test}
"odoc" {with-doc}
]
Expand All @@ -36,10 +36,3 @@ build: [
]
]
dev-repo: "git+https://github.com/melange-community/melange-json.git"
pin-depends: [
[ "melange.2.0.0" "git+https://github.com/melange-re/melange.git#e114ad55d185badeb32b3c766c9ab547495eac1b" ]
[ "reason.3.10.0" "git+https://github.com/reasonml/reason.git#972261dab3b651ff8ab9b8b9fcc32940595073dc" ]
[ "melange-jest.dev" "git+https://github.com/melange-community/melange-jest.git#acb6ef50beef3c486805d616b90aa7b56b51172d" ]
[ "melange-webapi.dev" "git+https://github.com/melange-community/melange-webapi.git#96dc1e2a867624d18050fad25cf1c71af7a098e1" ]
[ "melange-fetch.dev" "git+https://github.com/melange-community/melange-fetch.git#796f941b6b85eb7e6182ac6e4f40708bfde7a9a9" ]
]
Loading