From 6bf1b80058a97347b40f91b84728cf9bdb39b760 Mon Sep 17 00:00:00 2001 From: Giorgio Calderone Date: Tue, 28 Apr 2020 19:26:23 +0200 Subject: [PATCH] Bump version (1.3.0) --- ChangeLog.md | 2 +- Project.toml | 2 +- README.md | 9 ++++----- src/Gnuplot.jl | 2 +- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 27b17c8..d780102 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,4 +1,4 @@ -# Version 1.3.0 (not yet released) +# Version 1.3.0 (released on: Apr. 28, 2020) - New features: diff --git a/Project.toml b/Project.toml index 6b1ed41..1843889 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "Gnuplot" uuid = "dc211083-a33a-5b79-959f-2ff34033469d" -version = "1.2.0" +version = "1.3.0" [deps] ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4" diff --git a/README.md b/README.md index 3622dd5..d0c3ba6 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,7 @@ [![Build Status](https://travis-ci.org/gcalderone/Gnuplot.jl.svg?branch=master)](https://travis-ci.org/gcalderone/Gnuplot.jl) [![License](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](LICENSE.md) -[![DocumentationStatus](https://img.shields.io/badge/docs-stable-blue.svg?style=flat)](https://gcalderone.github.io/Gnuplot.jl/v1.2.0/) -[![DocumentationStatus](https://img.shields.io/badge/docs-latest-blue.svg?style=flat)](https://gcalderone.github.io/Gnuplot.jl/v1.3.0/) +[![DocumentationStatus](https://img.shields.io/badge/docs-stable-blue.svg?style=flat)](https://gcalderone.github.io/Gnuplot.jl/v1.3.0/) **Gnuplot.jl** is a simple package able to send both data and commands from Julia to an underlying [gnuplot](http://gnuplot.sourceforge.net/) process. Its main purpose it to provide a fast and powerful data visualization framework, using an extremely concise Julia syntax. @@ -22,9 +21,9 @@ You may check the installed **Gnuplot.jl** version with: ```julia ]st Gnuplot ``` -If the displayed version is not v1.2.0 you are probably having a dependency conflict. In this case try forcing installation of the latest version with: +If the displayed version is not v1.3.0 you are probably having a dependency conflict. In this case try forcing installation of the latest version with: ```julia -]add Gnuplot@1.2.0 +]add Gnuplot@1.3.0 ``` and check which package is causing the conflict. @@ -38,7 +37,7 @@ test_terminal() ## Quick start -The following examples are supposed to be self-explaining. See [documentation](https://gcalderone.github.io/Gnuplot.jl/v1.2.0/) for further informations. +The following examples are supposed to be self-explaining. See [documentation](https://gcalderone.github.io/Gnuplot.jl/v1.3.0/) for further informations. ### A simple parabola ```julia diff --git a/src/Gnuplot.jl b/src/Gnuplot.jl index ec8d735..923eef2 100644 --- a/src/Gnuplot.jl +++ b/src/Gnuplot.jl @@ -1321,7 +1321,7 @@ end Return the **Gnuplot.jl** package version. """ -version() = v"1.3.0-dev" +version() = v"1.3.0" # --------------------------------------------------------------------- """