Skip to content

Commit

Permalink
Revert "Add beta tag."
Browse files Browse the repository at this point in the history
This reverts commit d839d53.
  • Loading branch information
ilyak committed Sep 25, 2017
1 parent d839d53 commit 04cbe0a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.0)
# project_VERSION* variables populated from project(... VERSION x.x.x) string
cmake_policy(SET CMP0048 NEW)

project(libefp VERSION 1.5.0-beta LANGUAGES C)
project(libefp VERSION 1.5.0 LANGUAGES C)
set(libefp_AUTHORS "Ilya A. Kaliman")
set(libefp_DESCRIPTION "Parallel implementation of the Effective Fragment Potential method")
set(libefp_URL "https://libefp.github.io/")
Expand Down
2 changes: 1 addition & 1 deletion README-cmake.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ All these build options should be passed as `cmake -DOPTION`.
This project installs with `libefpConfig.cmake`, `libefpConfigVersion.cmake`, and `libefpTargets.cmake` files suitable for use with CMake [`find_package()`](https://cmake.org/cmake/help/v3.2/command/find_package.html) in `CONFIG` mode.

- `find_package(libefp)` - find any libefp libraries and headers
- `find_package(libefp 1.5.0-beta EXACT CONFIG REQUIRED COMPONENTS static)` - find libefp of exactly specified version built with static libraries; abort on failure
- `find_package(libefp 1.5.0 EXACT CONFIG REQUIRED COMPONENTS static)` - find libefp of exactly specified version built with static libraries; abort on failure

See [libefpConfig.cmake.in](cmake/libefpConfig.cmake.in) for details of how to detect the Config file and what CMake variables and targets are exported to your project.

Expand Down
2 changes: 1 addition & 1 deletion cmake/libefpConfig.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
# Suggested usage::
#
# find_package(libefp)
# find_package(libefp 1.5.0-beta EXACT CONFIG REQUIRED COMPONENTS shared)
# find_package(libefp 1.5.0 EXACT CONFIG REQUIRED COMPONENTS shared)
#
#
# The following variables can be set to guide the search for this package::
Expand Down
2 changes: 1 addition & 1 deletion src/efp.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ extern "C" {
#endif

/** Version string. */
#define LIBEFP_VERSION_STRING "1.5.0-beta"
#define LIBEFP_VERSION_STRING "1.5.0"

/** Result of an operation. */
enum efp_result {
Expand Down

0 comments on commit 04cbe0a

Please sign in to comment.