Skip to content

Commit a839428

Browse files
committed
Release v1.0.2
This is a maintenance release for conan stable channel
1 parent 77ce67d commit a839428

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
echo "::set-env name=REJECTION::Upstream version in debian/changelog does not match tag"
3535
head -n 1 debian/changelog | grep -q "python-eigen (${VERSION}"
3636
echo "::set-env name=REJECTION::Conan package version does not match tag"
37-
grep -q ' version = "${VERSION}"' conanfile.py
37+
grep -q "version = \"${VERSION}\"" conanfile.py
3838
echo "::set-env name=REJECTION::"
3939
export TAG=`echo ${{ github.ref }} | sed -e 's@refs/tags/@@'`
4040
echo "::set-env name=RELEASE_TAG::${TAG}"

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
cmake_minimum_required(VERSION 2.8)
66

77
project(Eigen3ToPython)
8-
set(PROJECT_VERSION 1.0.1)
8+
set(PROJECT_VERSION 1.0.2)
99

1010
find_package(Eigen3 NO_CMAKE_PACKAGE_REGISTRY)
1111
if(NOT Eigen3_FOUND)

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def enable_python2_and_python3(options):
2828

2929
class Eigen3ToPythonConan(ConanFile):
3030
name = "Eigen3ToPython"
31-
version = "1.0.1"
31+
version = "1.0.2"
3232
description = "Python bindings for the Eigen library"
3333
# topics can get used for searches, GitHub topics, Bintray tags etc. Add here keywords about the library
3434
topics = ("eigen", "python")

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
python-eigen (1.0.2-1ubuntu1) unstable; urgency=medium
2+
3+
* Updated upstream version
4+
5+
-- Pierre Gergondet <[email protected]> Tue, 08 Sep 2020 18:02:36 +0800
6+
17
python-eigen (1.0.1-1ubuntu2) unstable; urgency=medium
28

39
* Increment upstream version to force upload

0 commit comments

Comments
 (0)