Skip to content

Commit 6a54b23

Browse files
fix(Updates): typos and bugs fix. (#21)
* fix(Updates): typos and bugs fix.
1 parent e8d69e1 commit 6a54b23

File tree

19 files changed

+23
-22
lines changed

19 files changed

+23
-22
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
test:
1111
uses: Geode-solutions/actions/.github/workflows/cpp-test.yml@master
1212
with:
13-
name: OPENGEODE
13+
name: OPENGEODE_MYMODULE
1414
repos: ${{ vars.REPOS }}
1515
secrets: inherit

CMakeLists.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019 - 2022 Geode-solutions
1+
# Copyright (c) 2019 - 2024 Geode-solutions
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal
@@ -40,6 +40,7 @@ add_geode_library(
4040
"common.cpp"
4141
"hello_world.cpp"
4242
PUBLIC_HEADERS
43+
"common.h"
4344
"hello_world.h"
4445
PRIVATE_DEPENDENCIES
4546
OpenGeode::basic
@@ -50,12 +51,12 @@ add_geode_library(
5051
if(OPENGEODE_MYMODULE_WITH_TESTS)
5152
# Enable testing with CTest
5253
enable_testing()
53-
message(STATUS "Configuring OpenGeode-MyModule with tests")
54+
message(STATUS "Configuring with tests")
5455
add_subdirectory(tests)
5556
endif()
5657

5758
if(OPENGEODE_MYMODULE_WITH_PYTHON)
58-
message(STATUS "Configuring OpenGeode-MyModule with Python bindings")
59+
message(STATUS "Configuring with Python bindings")
5960
add_subdirectory(bindings/python)
6061
endif()
6162

COPYLEFT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
## Dependencies
22

33
OpenGeode: MIT
4-
Copyright (c) 2019 - 2022 Geode-solutions
4+
Copyright (c) 2019 - 2024 Geode-solutions

LICENSE

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

3-
Copyright (c) 2019 - 2022 Geode-solutions
3+
Copyright (c) 2019 - 2024 Geode-solutions
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ For questions and support please use the official [slack](https://slackin-openge
4949

5050
[MIT](https://opensource.org/licenses/MIT)
5151

52-
Copyright (c) 2019 - 2022, Geode-solutions
52+
Copyright (c) 2019 - 2024, Geode-solutions

bindings/python/mylib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2019 - 2022 Geode-solutions. All rights reserved.
2+
# Copyright (c) 2019 - 2024 Geode-solutions. All rights reserved.
33
#
44

55
import opengeode

bindings/python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
#
55
# pip-compile --pre bindings/python/requirements.in
66
#
7-
opengeode-core==14.*,>=14.18.3
7+
opengeode-core==14.*,>=14.23.1
88
# via -r bindings/python/requirements.in

bindings/python/src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019 - 2022 Geode-solutions
1+
# Copyright (c) 2019 - 2024 Geode-solutions
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal

bindings/python/src/mylib/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019 - 2022 Geode-solutions
1+
# Copyright (c) 2019 - 2024 Geode-solutions
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal

bindings/python/src/mylib/mylib.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019 - 2022 Geode-solutions
2+
* Copyright (c) 2019 - 2024 Geode-solutions
33
*
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)