Skip to content

Commit

Permalink
FIX: conflicts for PR
Browse files Browse the repository at this point in the history
  • Loading branch information
9and3 committed Nov 28, 2024
2 parents e5b905e + 797e912 commit 5aa776c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 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.16.)
project(diffCheck VERSION 1.1.0 LANGUAGES CXX C)
project(diffCheck VERSION 1.1.1 LANGUAGES CXX C)
set(CMAKE_CXX_STANDARD 17)

list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
Expand Down
6 changes: 5 additions & 1 deletion invokes/yakerize.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#! python3

"""
Yakerize.py was originally developed as part of the DiffCheck plugin by
Andrea Settimi, Damien Gilliard, Eleni Skevaki, Marirena Kladeftira (IBOIS, CRCL, EPFL) in 2024.
It is distributed under the MIT License, provided this attribution is retained.
"""
import os
import sys
import argparse
Expand Down
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: diffCheck
version: 1.1.0
version: 1.2.0
authors:
- Andrea Settimi
- Damien Gilliard
Expand Down
2 changes: 1 addition & 1 deletion src/gh/diffCheck/diffCheck/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

__version__ = "1.1.0"
__version__ = "1.1.1"

# make the dlls available to the python interpreter
PATH_TO_DLL = "dlls"
Expand Down
2 changes: 1 addition & 1 deletion src/gh/diffCheck/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="diffCheck",
version="1.1.0",
version="1.1.1",
packages=find_packages(),
install_requires=[
"numpy",
Expand Down

0 comments on commit 5aa776c

Please sign in to comment.