Skip to content

Commit

Permalink
Merge pull request #9 from 3MAH/1.9.3
Browse files Browse the repository at this point in the history
Version 1.9.3
  • Loading branch information
chemiskyy authored Jun 13, 2024
2 parents 9f0472d + d507b34 commit 654775d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include(CheckLibraryExists)
# The version number
set(VERSION_MAJOR 1)
set(VERSION_MINOR 9)
set(VERSION_PATCH 2)
set(VERSION_PATCH 3)

if(VERSION_PATCH MATCHES "0")
set(VERSION_NUMBER "${VERSION_MAJOR}.${VERSION_MINOR}")
Expand Down
26 changes: 14 additions & 12 deletions python-setup/setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
from setuptools import setup, find_packages

setup(name='simcoon',
version='1.0',
description='Simulation in Mechanics and Materials: Interactive Tools',
author='Yves Chemisky',
author_email='yves.chemisky@gmail.com',
#url=
packages=['simcoon',],
package_data={'simcoon': ['simmit.so']},

include_package_data=True,
license='GPL'
)
setup(
name="simcoon",
version="1.9.3",
description="Simulation in Mechanics and Materials: Interactive Tools",
author="Yves Chemisky",
author_email="yves.chemisky@gmail.com",
# url=
packages=[
"simcoon",
],
package_data={"simcoon": ["simmit.so"]},
include_package_data=True,
license="GPL",
)
4 changes: 2 additions & 2 deletions simcoon-python-builder/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ project(simcoon)
#set(CMAKE_VERBOSE_MAKEFILE ON)

# The version number
set(VERSION_MAJOR 0)
set(VERSION_MAJOR 1)
set(VERSION_MINOR 9)
set(VERSION_PATCH 0)
set(VERSION_PATCH 3)

if(VERSION_PATCH MATCHES "0")
set(VERSION_NUMBER "${VERSION_MAJOR}.${VERSION_MINOR}")
Expand Down

0 comments on commit 654775d

Please sign in to comment.