Skip to content

fix(year): Happy new year ! #24

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

Merged
merged 5 commits into from
Jan 7, 2025
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 .gitattributes
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

À faire partout ?

Original file line number Diff line number Diff line change
@@ -1 +1 @@
tests/* linguist-vendored
tests/** linguist-vendored
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2019 - 2024 Geode-solutions
# Copyright (c) 2019 - 2025 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,8 +40,8 @@ add_geode_library(
"common.cpp"
"hello_world.cpp"
PUBLIC_HEADERS
"common.h"
"hello_world.h"
"common.hpp"
"hello_world.hpp"
PRIVATE_DEPENDENCIES
OpenGeode::basic
)
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 - 2024 Geode-solutions
Copyright (c) 2019 - 2025 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 - 2024 Geode-solutions
Copyright (c) 2019 - 2025 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 - 2024, Geode-solutions
Copyright (c) 2019 - 2025, Geode-solutions
2 changes: 1 addition & 1 deletion bindings/python/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 - 2025 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/mylib.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2019 - 2024 Geode-solutions. All rights reserved.
# Copyright (c) 2019 - 2025 Geode-solutions. All rights reserved.
#

import opengeode
Expand Down
4 changes: 2 additions & 2 deletions bindings/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#
# This file is autogenerated by pip-compile with Python 3.10
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile --pre bindings/python/requirements.in
#
opengeode-core==14.*,>=14.23.1
opengeode-core==15.*,>=15.9.3
# 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 - 2024 Geode-solutions
# Copyright (c) 2019 - 2025 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 - 2024 Geode-solutions
# Copyright (c) 2019 - 2025 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 bindings/python/src/mylib/mylib.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 - 2024 Geode-solutions
* Copyright (c) 2019 - 2025 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 <pybind11/pybind11.h>

#include <mylib/hello_world.h>
#include <mylib/hello_world.hpp>

PYBIND11_MODULE( opengeode_mymodule_py_mylib, module )
{
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/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 - 2025 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/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 - 2025 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/tests/mylib/test-py-hello-world.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2019 - 2022 Geode-solutions
# Copyright (c) 2019 - 2025 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 - 2024 Geode-solutions
# Copyright (c) 2019 - 2025 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 - 2024 Geode-solutions
# Copyright (c) 2019 - 2025 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
14 changes: 0 additions & 14 deletions include/mylib/common.h

This file was deleted.

14 changes: 14 additions & 0 deletions include/mylib/common.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
* Copyright (c) 2019 - 2025 Geode-solutions. All rights reserved.
*/

#pragma once

#include <geode/basic/common.hpp>
#include <geode/basic/library.hpp>
#include <mylib/opengeode_mymodule_mylib_export.hpp>

namespace mymodule
{
OPENGEODE_LIBRARY( opengeode_mymodule_mylib_api, MyModuleMyLib );
} // namespace mymodule
4 changes: 2 additions & 2 deletions include/mylib/hello_world.h → include/mylib/hello_world.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 - 2024 Geode-solutions
* Copyright (c) 2019 - 2025 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 @@

#pragma once

#include <mylib/common.h>
#include <mylib/common.hpp>

namespace mymodule
{
Expand Down
6 changes: 3 additions & 3 deletions src/mylib/common.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 - 2024 Geode-solutions
* Copyright (c) 2019 - 2025 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 @@ -21,9 +21,9 @@
*
*/

#include <mylib/common.h>
#include <mylib/common.hpp>

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

namespace mymodule
{
Expand Down
6 changes: 3 additions & 3 deletions src/mylib/hello_world.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 - 2024 Geode-solutions
* Copyright (c) 2019 - 2025 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 @@ -21,9 +21,9 @@
*
*/

#include <mylib/hello_world.h>
#include <mylib/hello_world.hpp>

#include <geode/basic/logger.h>
#include <geode/basic/logger.hpp>

namespace mymodule
{
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 - 2024 Geode-solutions
# Copyright (c) 2019 - 2025 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 - 2024 Geode-solutions
# Copyright (c) 2019 - 2025 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
8 changes: 4 additions & 4 deletions tests/mylib/test-hello-world.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 - 2024 Geode-solutions
* Copyright (c) 2019 - 2025 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 @@ -21,10 +21,10 @@
*
*/

#include <geode/basic/assert.h>
#include <geode/basic/logger.h>
#include <geode/basic/assert.hpp>
#include <geode/basic/logger.hpp>

#include <mylib/hello_world.h>
#include <mylib/hello_world.hpp>

int main()
{
Expand Down
Loading