Skip to content

Commit

Permalink
Increase version number to v0.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
kmhofmann committed Jan 25, 2019
1 parent 5f7b32f commit 570c0b1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.8)
project(selene VERSION 0.3 LANGUAGES CXX)
project(selene VERSION 0.3.1 LANGUAGES CXX)

# User-settable options
option(SELENE_BUILD_TESTS "Build Selene tests" OFF)
Expand Down
6 changes: 3 additions & 3 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ used to host the **Selene** package:
conan remote add kmhofmann https://api.bintray.com/conan/kmhofmann/conan-repo

This has to be done once per Conan installation.
Then install the actual package; the current library version provided is `0.3`.
Then install the actual package; the current library version provided is `0.3.1`.

conan install selene/0.3@selene/testing -r kmhofmann
conan install selene/0.3.1@selene/testing -r kmhofmann

Alternatively, just specify `selene/0.3@selene/testing` in a project's `conanfile.txt`.
Alternatively, just specify `selene/0.3.1@selene/testing` in a project's `conanfile.txt`.

Please refer to the [Conan documentation](http://docs.conan.io/) on how to make use of the installed package.
See also the Bintray website for Selene: https://bintray.com/kmhofmann/conan-repo/selene%3Aselene.
4 changes: 2 additions & 2 deletions package/conan/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class SeleneConan(ConanFile):
name = "selene"
version = "0.3"
version = "0.3.1"
license = "MIT"
url = "https://github.com/kmhofmann/selene"
description = "A C++17 image representation, processing and I/O library."
Expand Down Expand Up @@ -42,4 +42,4 @@ def package_info(self):
"selene_img_io_png",
"selene_img_io_tiff",
"selene_img_ops",
"selene_io"]
"selene"]
2 changes: 1 addition & 1 deletion package/vcpkg/CONTROL
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Source: selene
Version: 0.3
Version: 0.3.1
Description: A C++17 image representation, processing and I/O library.
Build-Depends: zlib, libpng, libjpeg-turbo, tiff
2 changes: 1 addition & 1 deletion package/vcpkg/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO kmhofmann/selene
REF v0.3
REF v0.3.1
SHA512 53a4a6577b4e618c5b080e0ddaa1e0e28b7c0a27e800eb9d1b1a2a6fbfaf630a6f326a3d070ad0c3f9bd8fb5e6bdd7fafbbd5a49e5f9a6f9ae79e0b50d20f741
HEAD_REF master
)
Expand Down

0 comments on commit 570c0b1

Please sign in to comment.