Skip to content

Commit 18eb16c

Browse files
release 1.0.0
1 parent eb28562 commit 18eb16c

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ cmake_minimum_required(VERSION 3.10)
22
if(${CMAKE_VERSION} VERSION_LESS 3.12)
33
project(
44
Htool
5-
VERSION 1.0
5+
VERSION 1.0.0
66
LANGUAGES CXX)
77
else()
88
project(
99
Htool
10-
VERSION 1.0
11-
DESCRIPTION "A header only c++ library that provides Hierarchical matrices."
12-
HOMEPAGE_URL "https://github.com/htool-ddm/htool"
10+
VERSION 1.0.0
11+
DESCRIPTION "Python interface of Htool-DDM, a header only c++ library that provides Hierarchical matrices."
12+
HOMEPAGE_URL "https://github.com/htool-ddm/htool_python"
1313
LANGUAGES CXX)
1414
endif()
1515

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "htool"
3-
version = "0.1"
3+
version = "1.0.0"
44
authors = [{ name = "Pierre Marchand", email = "test@test.com" }]
55
description = "CLI utility to automate asciinema"
66
readme = "README.md"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,10 @@ def build_extension(self, ext):
192192

193193
setup(
194194
name="Htool",
195-
version="0.9.0",
195+
version="1.0.0",
196196
author="Pierre Marchand",
197197
author_email="",
198-
description="""A pybind11 interface to Htool.""",
198+
description="""A pybind11 interface to Htool-DDM.""",
199199
long_description="",
200200
ext_modules=[CMakeExtension("Htool")],
201201
cmdclass=dict(build_ext=CMakeBuild),

0 commit comments

Comments
 (0)