From 55da079955e4fa713408215ebbd3e4df5129bebf Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Tue, 24 May 2022 07:02:56 -0500 Subject: [PATCH] Update upstream URLs --- README.md | 17 ++++------------- preserves.nimble | 2 +- 2 files changed, 5 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 44ff0a3..b54c5fa 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,12 @@ # Preserves -Nim implementation of the [Preserves data language](https://preserves.gitlab.io/preserves/preserves.html). +Nim implementation of the [Preserves data language](https://preserves.dev/). ## Library -To parse or produce Preserves one should write a -[schema](https://preserves.gitlab.io/preserves/preserves-schema.html) and -generate a Nim module using the `preserves_schema_nim` utility. This module will -contain Nim types corresponding to schema definitions. The `toPreserve` and -`fromPreserve` routines will convert Nim types to and from Preserves. The -`decodePreserves`, `parsePreserves`, `encode`, and `$` routines will convert -`Preserve` objects to and from binary and textual encoding. +To parse or produce Preserves one should write a [schema](https://preserves.dev/preserves-schema.html) and generate a Nim module using the [preserves_schema_nim](./src/preserves/preserves_schema_nim.nim) utility. This module will contain Nim types corresponding to schema definitions. The `toPreserve` and`fromPreserve` routines will convert Nim types to and from Preserves. The `decodePreserves`, `parsePreserves`, `encode`, and `$` routines will convert `Preserve` objects to and from binary and textual encoding. -To debug the `toPreserves` and `fromPreserves` routines compile with -`-d:tracePreserves`. +To debug the `toPreserves` and `fromPreserves` routines compile with `-d:tracePreserves`. ## Utilities * preserves_schema_nim @@ -23,6 +16,4 @@ To debug the `toPreserves` and `fromPreserves` routines compile with * preserves_to_json ### Installation -`preserves_encode` is a multi-call binary that implements `preserves_encode`, -`preserves_decode`, `preserves_from_json`, and `preserves_to_json`, so the -appropriate symlinks should be created during packaging. +`preserves_encode` is a multi-call binary that implements `preserves_encode`, `preserves_decode`, `preserves_from_json`, and `preserves_to_json`, so the appropriate symlinks should be created during packaging. diff --git a/preserves.nimble b/preserves.nimble index 5561e05..e8559da 100644 --- a/preserves.nimble +++ b/preserves.nimble @@ -1,6 +1,6 @@ # Package -version = "3.3.1" # versioned in git, this version is just to confuse nimble +version = "3.3.2" # versioned in git, this version is just to confuse nimble author = "Emery Hemingway" description = "data model and serialization format" license = "Unlicense"