Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(Updates): typos and bugs fix. #21

Merged
merged 2 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
test:
uses: Geode-solutions/actions/.github/workflows/cpp-test.yml@master
with:
name: OPENGEODE
name: OPENGEODE_MYMODULE
repos: ${{ vars.REPOS }}
secrets: inherit
7 changes: 4 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2019 - 2022 Geode-solutions
# Copyright (c) 2019 - 2024 Geode-solutions
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -40,6 +40,7 @@ add_geode_library(
"common.cpp"
"hello_world.cpp"
PUBLIC_HEADERS
"common.h"
"hello_world.h"
PRIVATE_DEPENDENCIES
OpenGeode::basic
Expand All @@ -50,12 +51,12 @@ add_geode_library(
if(OPENGEODE_MYMODULE_WITH_TESTS)
# Enable testing with CTest
enable_testing()
message(STATUS "Configuring OpenGeode-MyModule with tests")
message(STATUS "Configuring with tests")
add_subdirectory(tests)
endif()

if(OPENGEODE_MYMODULE_WITH_PYTHON)
message(STATUS "Configuring OpenGeode-MyModule with Python bindings")
message(STATUS "Configuring with Python bindings")
add_subdirectory(bindings/python)
endif()

Expand Down
2 changes: 1 addition & 1 deletion COPYLEFT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Dependencies

OpenGeode: MIT
Copyright (c) 2019 - 2022 Geode-solutions
Copyright (c) 2019 - 2024 Geode-solutions
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 - 2022 Geode-solutions
Copyright (c) 2019 - 2024 Geode-solutions

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ For questions and support please use the official [slack](https://slackin-openge

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

Copyright (c) 2019 - 2022, Geode-solutions
Copyright (c) 2019 - 2024, Geode-solutions
2 changes: 1 addition & 1 deletion bindings/python/mylib.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2019 - 2022 Geode-solutions. All rights reserved.
# Copyright (c) 2019 - 2024 Geode-solutions. All rights reserved.
#

import opengeode
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
#
# pip-compile --pre bindings/python/requirements.in
#
opengeode-core==14.*,>=14.18.3
opengeode-core==14.*,>=14.23.1
# via -r bindings/python/requirements.in
2 changes: 1 addition & 1 deletion bindings/python/src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2019 - 2022 Geode-solutions
# Copyright (c) 2019 - 2024 Geode-solutions
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/src/mylib/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2019 - 2022 Geode-solutions
# Copyright (c) 2019 - 2024 Geode-solutions
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/src/mylib/mylib.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 - 2022 Geode-solutions
* Copyright (c) 2019 - 2024 Geode-solutions
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion cmake/Doxyfile.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2019 - 2022 Geode-solutions
# Copyright (c) 2019 - 2024 Geode-solutions
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion cmake/OpenGeode-MyModuleConfig.cmake.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2019 - 2022 Geode-solutions
# Copyright (c) 2019 - 2024 Geode-solutions
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion include/mylib/common.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 - 2022 Geode-solutions. All rights reserved.
* Copyright (c) 2019 - 2024 Geode-solutions. All rights reserved.
*/

#pragma once
Expand Down
2 changes: 1 addition & 1 deletion include/mylib/hello_world.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 - 2022 Geode-solutions
* Copyright (c) 2019 - 2024 Geode-solutions
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions src/mylib/common.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 - 2022 Geode-solutions
* Copyright (c) 2019 - 2024 Geode-solutions
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -23,7 +23,7 @@

#include <mylib/common.h>

#include <geode/basic/common.h>
#include <geode/basic/library.h>

namespace mymodule
{
Expand Down
2 changes: 1 addition & 1 deletion src/mylib/hello_world.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 - 2022 Geode-solutions
* Copyright (c) 2019 - 2024 Geode-solutions
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2019 - 2022 Geode-solutions
# Copyright (c) 2019 - 2024 Geode-solutions
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion tests/mylib/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2019 - 2022 Geode-solutions
# Copyright (c) 2019 - 2024 Geode-solutions
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion tests/mylib/test-hello-world.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 - 2022 Geode-solutions
* Copyright (c) 2019 - 2024 Geode-solutions
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading