Skip to content

Commit

Permalink
prepare for 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Jan 29, 2024
1 parent fb58d77 commit 5adaf7e
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 17 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changes

## 0.9

- fix `PrintBox.text` will correctly handle newlines
- new `printbox-md` backend, generating markdown (by @lukstafi)

## 0.8

- require dune 3.0
Expand Down
6 changes: 3 additions & 3 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
(name printbox)
(using mdx 0.2)
(generate_opam_files true)
(version 0.8)
(version 0.9)
(license "BSD-2-Clause")

(authors "Simon Cruanes" "Guillaume Bury")
(maintainers c-cube)
(authors "Simon Cruanes" "Guillaume Bury" "lukstafi")
(maintainers c-cube lukstafi)
(source (github c-cube/printbox))

(package
Expand Down
6 changes: 3 additions & 3 deletions printbox-html.opam
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.8"
version: "0.9"
synopsis: "Printbox unicode handling"
description: """

Adds html output handling to the printbox package.
Printbox allows to print nested boxes, lists, arrays, tables in several formats"""
maintainer: ["c-cube"]
authors: ["Simon Cruanes" "Guillaume Bury"]
maintainer: ["c-cube" "lukstafi"]
authors: ["Simon Cruanes" "Guillaume Bury" "lukstafi"]
license: "BSD-2-Clause"
homepage: "https://github.com/c-cube/printbox"
bug-reports: "https://github.com/c-cube/printbox/issues"
Expand Down
6 changes: 3 additions & 3 deletions printbox-md.opam
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.8"
version: "0.9"
synopsis: "Printbox Markdown rendering"
description: """

Adds Markdown output handling to the printbox package, with fallback to text and simplified HTML.
Printbox allows to print nested boxes, lists, arrays, tables in several formats"""
maintainer: ["c-cube"]
authors: ["Simon Cruanes" "Guillaume Bury"]
maintainer: ["c-cube" "lukstafi"]
authors: ["Simon Cruanes" "Guillaume Bury" "lukstafi"]
license: "BSD-2-Clause"
homepage: "https://github.com/c-cube/printbox"
bug-reports: "https://github.com/c-cube/printbox/issues"
Expand Down
6 changes: 3 additions & 3 deletions printbox-text.opam
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.8"
version: "0.9"
synopsis: "Text renderer for printbox, using unicode edges"
maintainer: ["c-cube"]
authors: ["Simon Cruanes" "Guillaume Bury"]
maintainer: ["c-cube" "lukstafi"]
authors: ["Simon Cruanes" "Guillaume Bury" "lukstafi"]
license: "BSD-2-Clause"
homepage: "https://github.com/c-cube/printbox"
bug-reports: "https://github.com/c-cube/printbox/issues"
Expand Down
6 changes: 3 additions & 3 deletions printbox.opam
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.8"
version: "0.9"
synopsis:
"Allows to print nested boxes, lists, arrays, tables in several formats"
maintainer: ["c-cube"]
authors: ["Simon Cruanes" "Guillaume Bury"]
maintainer: ["c-cube" "lukstafi"]
authors: ["Simon Cruanes" "Guillaume Bury" "lukstafi"]
license: "BSD-2-Clause"
tags: ["print" "box" "table" "tree"]
homepage: "https://github.com/c-cube/printbox"
Expand Down
6 changes: 4 additions & 2 deletions src/printbox-md/PrintBox_md.mli
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
(* This file is free software. See file "license" for more details. *)
(** Output Markdown.
@since 0.9 *)

(** {1 Output Markdown} *)
(* This file is free software. See file "license" for more details. *)

(** {2 Markdown configuration} *)
module Config : sig
Expand Down

0 comments on commit 5adaf7e

Please sign in to comment.