Skip to content

Commit 5aa776c

Browse files
committed
FIX: conflicts for PR
2 parents e5b905e + 797e912 commit 5aa776c

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.16.)
2-
project(diffCheck VERSION 1.1.0 LANGUAGES CXX C)
2+
project(diffCheck VERSION 1.1.1 LANGUAGES CXX C)
33
set(CMAKE_CXX_STANDARD 17)
44

55
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)

invokes/yakerize.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#! python3
2-
2+
"""
3+
Yakerize.py was originally developed as part of the DiffCheck plugin by
4+
Andrea Settimi, Damien Gilliard, Eleni Skevaki, Marirena Kladeftira (IBOIS, CRCL, EPFL) in 2024.
5+
It is distributed under the MIT License, provided this attribution is retained.
6+
"""
37
import os
48
import sys
59
import argparse

manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: diffCheck
3-
version: 1.1.0
3+
version: 1.2.0
44
authors:
55
- Andrea Settimi
66
- Damien Gilliard

src/gh/diffCheck/diffCheck/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
__version__ = "1.1.0"
3+
__version__ = "1.1.1"
44

55
# make the dlls available to the python interpreter
66
PATH_TO_DLL = "dlls"

src/gh/diffCheck/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name="diffCheck",
7-
version="1.1.0",
7+
version="1.1.1",
88
packages=find_packages(),
99
install_requires=[
1010
"numpy",

0 commit comments

Comments
 (0)