Skip to content

Commit

Permalink
RLS Version 1.3.0
Browse files Browse the repository at this point in the history
An accummulation of improvements rather than a big new feature is what
triggers the new release.

Full `ChangeLog`:

- Validate count() headers on --validate-only
- Better error message if the user attempts to use the non-existent <\> operator (suggest </>)
- Add min-ngless-version field for modules
- Add early check that block assignments are always to block variables
- Use ZStd compression for temporary files from preprocess()
- Correctly handle subpaths in samples for collect (fixes #141)
- Add to_string() to int and double types (partially fixes #78 & fixes #81)
- Add read_int() and read_double() functions (fixes #78)
  • Loading branch information
luispedro committed Jan 26, 2021
1 parent 871cd1f commit a1fe707
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 12 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version 1.2.0+
Version 1.3.0 2021-01-28 by luispedro
* Validate count() headers on --validate-only
* Better error message if the user attempts to use the non-existent <\>
operator (suggest </>)
Expand Down
4 changes: 2 additions & 2 deletions NGLess/Version.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{- Copyright 2013-2020 NGLess Authors
{- Copyright 2013-2021 NGLess Authors
- License: MIT
-}
{-# LANGUAGE TemplateHaskell, CPP #-}
Expand All @@ -19,7 +19,7 @@ versionStr :: String
versionStr = showVersion version

dateStr :: String
dateStr = "Unreleased (post 1.2.0)"
dateStr = "28 January 2021 (version 1.3.0)"

gitHashStr :: String
gitHashStr = $(gitHash)
Expand Down
11 changes: 9 additions & 2 deletions docs/sources/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,23 @@
What's New (History)
====================

Version 1.3.0
-------------

Unreleased development version
------------------------------
Released *28 January 2021*

User-visible improvements
~~~~~~~~~~~~~~~~~~~~~~~~~

- Adds conversion from string to numbers (int or double) and back
- Better error message if the user attempts to use the non-existent ``<\>``
operator (suggest ``</>``)
- Validate ``count()`` headers on ``--validate-only``

Internal improvements
~~~~~~~~~~~~~~~~~~~~~

- Use zstd compression for more temporary files

Bugfixes
~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: NGLess
version: '1.2.0'
version: '1.3.0'
category: Domain Specific Language
author: Luis Pedro Coelho and others (see AUTHORS)
maintainer: [email protected]
Expand Down
2 changes: 1 addition & 1 deletion tests/argv/expected.stdout.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NGLess v1.2.0 (C) NGLess authors
NGLess v1.3.0 (C) NGLess authors
https://ngless.embl.de/

When publishing results from this script, please cite the following references:
Expand Down
2 changes: 1 addition & 1 deletion tests/error-ofile-complex/expected.stdout.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NGLess v1.2.0 (C) NGLess authors
NGLess v1.3.0 (C) NGLess authors
https://ngless.embl.de/

When publishing results from this script, please cite the following references:
Expand Down
2 changes: 1 addition & 1 deletion tests/exampleModule/expected.stdout.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NGLess v1.2.0 (C) NGLess authors
NGLess v1.3.0 (C) NGLess authors
https://ngless.embl.de/

When publishing results from this script, please cite the following references:
Expand Down
2 changes: 1 addition & 1 deletion tests/len_list/expected.stdout.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NGLess v1.2.0 (C) NGLess authors
NGLess v1.3.0 (C) NGLess authors
https://ngless.embl.de/

When publishing results from this script, please cite the following references:
Expand Down
2 changes: 1 addition & 1 deletion tests/parse_odd_corners/expected.stdout.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NGLess v1.2.0 (C) NGLess authors
NGLess v1.3.0 (C) NGLess authors
https://ngless.embl.de/

When publishing results from this script, please cite the following references:
Expand Down
2 changes: 1 addition & 1 deletion tests/readlines/expected.stdout.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NGLess v1.2.0 (C) NGLess authors
NGLess v1.3.0 (C) NGLess authors
https://ngless.embl.de/

When publishing results from this script, please cite the following references:
Expand Down

0 comments on commit a1fe707

Please sign in to comment.