# HG changeset patch # User Christophe de Vienne <christophe@cdevienne.info> # Date 1614243263 -3600 # Thu Feb 25 09:54:23 2021 +0100 # Node ID 06181b8c0ec8b038f188cebda10864cae5cf0eaf # Parent e43c02ba15dc895a59ad64fb5137371f5f4f243d Prepare release 0.3.0 diff --git a/HISTORY.rst b/HISTORY.rst --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,11 +1,25 @@ Release history =============== +0.3.0 (2020-03-09) +------------------ + - use the 'database' package provided by go-orusapi - 'admin-password' command now accepts the password as an argument. - provide a 'rednerd-standalone' image - flag '--token-secret' is not required anymore -- add a "varlist" subcommand +- add a "varlist" feature. It lists all the variables found in a template +- documentation +- use 'go-orusapi/database' to replace the internal database package. +- Implement streamed documents and parallel rendering the pipeline steps. + +- new engines: + + - od-templating - uses https://orus.io/orus-io/od-templating to render + mustache templates inside OpenDocument files. + + - libreoffice - uses https://github.com/dveselov/go-libreofficekit to convert + documents with libreoffice. 0.2.0 (2020-09-17) ------------------ diff --git a/restapi/doc.go b/restapi/doc.go --- a/restapi/doc.go +++ b/restapi/doc.go @@ -10,7 +10,7 @@ // https // Host: localhost // BasePath: /api -// Version: 0.1.0 +// Version: 0.3.0 // // Consumes: // - application/io.orus.rednerd.v1+json diff --git a/restapi/embedded_spec.go b/restapi/embedded_spec.go --- a/restapi/embedded_spec.go +++ b/restapi/embedded_spec.go @@ -33,7 +33,7 @@ "info": { "description": "The Rednerd rendering server. For a list of available rendering engines\nand their options, see \u003ca href=\"/docs/engines\"\u003eRednerd Engines\u003c/a\u003e.\n", "title": "Rednerd API", - "version": "0.1.0" + "version": "0.3.0" }, "basePath": "/api", "paths": { @@ -1086,7 +1086,7 @@ "info": { "description": "The Rednerd rendering server. For a list of available rendering engines\nand their options, see \u003ca href=\"/docs/engines\"\u003eRednerd Engines\u003c/a\u003e.\n", "title": "Rednerd API", - "version": "0.1.0" + "version": "0.3.0" }, "basePath": "/api", "paths": { diff --git a/swagger.yaml b/swagger.yaml --- a/swagger.yaml +++ b/swagger.yaml @@ -6,7 +6,7 @@ and their options, see <a href="/docs/engines">Rednerd Engines</a>. title: Rednerd API - version: 0.1.0 + version: 0.3.0 consumes: - application/io.orus.rednerd.v1+json - application/json