Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyak committed Apr 11, 2017
1 parent 3853307 commit e15e773
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.0)
cmake_policy(SET CMP0048 NEW)

project(libefp
VERSION 1.4.1
VERSION 1.4.2
LANGUAGES C)
set(libefp_AUTHORS "Ilya A. Kaliman")
set(libefp_DESCRIPTION "Parallel implementation of the Effective Fragment Potential (EFP) method")
Expand Down
2 changes: 1 addition & 1 deletion README-cmake.md
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.4.1 EXACT CONFIG REQUIRED COMPONENTS static)` - find libefp exactly version 1.4.1 built with static libraries; abort on failure
- `find_package(libefp 1.4.2 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
Expand Up @@ -33,7 +33,7 @@
# Suggested usage::
#
# find_package(libefp)
# find_package(libefp 1.4.1 EXACT CONFIG REQUIRED COMPONENTS shared)
# find_package(libefp 1.4.2 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
Expand Up @@ -40,7 +40,7 @@ extern "C" {
#endif

/** Version string. */
#define LIBEFP_VERSION_STRING "1.4.1"
#define LIBEFP_VERSION_STRING "1.4.2"

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

0 comments on commit e15e773

Please sign in to comment.