Skip to content

Commit 26f977c

Browse files
committed
Change links to new repository address
1 parent ff99951 commit 26f977c

File tree

9 files changed

+18
-20
lines changed

9 files changed

+18
-20
lines changed

.github/workflows/cla.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424
# The below token has repo scope for the project configured further below to store signatures.
2525
PERSONAL_ACCESS_TOKEN: ${{ secrets.CADET_CLA_SIGNATURES }}
26-
PATH_TO_CLA: 'https://github.com/modsim/CADET/blob/master/CLA.md'
26+
PATH_TO_CLA: 'https://github.com/cadet/cadet-core/blob/master/CLA.md'
2727
with:
2828
path-to-signatures: 'signatures/version1/signatures.json'
2929
path-to-document: $PATH_TO_CLA

BUILD-LINUX.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ sudo apt -y install liblapack3 liblapack-dev libblas3 libblas-dev
4343

4444
## Build CADET
4545

46-
- Clone the CADET source code `git clone https://github.com/modsim/CADET.git CADET`
46+
- Clone the CADET source code `git clone https://github.com/cadet/cadet-core.git CADET`
4747
- Create the directories `CADET/build` and `CADET/install`
4848

4949
- Open a terminal and change to `CADET/build`

BUILD-OSX.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ or install the freely available [Intel MKL](https://software.intel.com/sites/cam
3636

3737
## Build CADET
3838

39-
- Clone the CADET source code `git clone https://github.com/modsim/CADET.git CADET`
39+
- Clone the CADET source code `git clone https://github.com/cadet/cadet-core.git CADET`
4040
- Create the directories `CADET/build` and `CADET/install`
4141

4242
* If using Intel MKL, execute `export MKLROOT=/opt/intel/mkl`

BUILD-WINDOWS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ We are using Visual Studio because it is the easiest way to install all required
4747
## Prepare CADET code
4848

4949
- Clone the CADET source code into a `CADET` folder:
50-
- `git clone https://github.com/modsim/CADET.git CADET`
50+
- `git clone https://github.com/cadet/cadet-core.git CADET`
5151
- Create the directories `CADET\build` and `CADET\install`
5252

5353
## Build CADET in Visual Studio

CLA.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ You warrant, that you are legitimated to license the Contribution to us.
4040

4141
# Acceptance of the CLA
4242

43-
By submitting your Contribution via the [Repository](https://github.com/modsim/CADET) you accept this agreement.
43+
By submitting your Contribution via the [Repository](https://github.com/cadet/cadet-core) you accept this agreement.
4444

4545

4646
# Liability

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ message(STATUS "Current git HEAD: ${GIT_REFSPEC} SHA1 ${GIT_SHA1}")
6767
project(CadetFramework
6868
VERSION ${CADET_VERSION}
6969
DESCRIPTION "Liquid column chromatography simulator"
70-
HOMEPAGE_URL "https://github.com/modsim/CADET"
70+
HOMEPAGE_URL "https://github.com/cadet/cadet-core"
7171
LANGUAGES CXX C)
7272

7373
# Always use '-fPIC'/'-fPIE' option

README.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
CADET
22
======
33

4-
.. image:: https://img.shields.io/github/release/modsim/cadet.svg
5-
:target: https://github.com/modsim/CADET/releases
4+
.. image:: https://img.shields.io/github/release/cadet/cadet-core.svg
5+
:target: https://github.com/cadet/cadet-core/releases
66

7-
.. image:: https://github.com/modsim/CADET/actions/workflows/ci.yml/badge.svg?branch=master
8-
:target: https://github.com/modsim/CADET/actions/workflows/ci.yml?query=branch%3Amaster
7+
.. image:: https://github.com/cadet/cadet-core/actions/workflows/ci.yml/badge.svg?branch=master
8+
:target: https://github.com/cadet/cadet-core/actions/workflows/ci.yml?query=branch%3Amaster
99

1010
.. image:: https://anaconda.org/conda-forge/cadet/badges/downloads.svg
1111
:target: https://anaconda.org/conda-forge/cadet

doc/developer_guide/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Developer Guide
66
This developer guide is intended to help expand and maintain CADET-Core and is written to serve developers with diverse backgrounds.
77

88
If you find any gaps or have suggestions for improvement, your input is valuable in refining our documentation for better comprehension by all developers.
9-
Please feel free to open an `issue on GitHub <https://github.com/modsim/CADET/issues>`_ or, even better, write a draft and create a pull request.
9+
Please feel free to open an `issue on GitHub <https://github.com/cadet/cadet-core/issues>`_ or, even better, write a draft and create a pull request.
1010

1111
When planning to extend or contribute to CADET-Core, please adhere to our notation style and research software engineering (RSE) best practices.
1212
For detailed guidance, you can e.g. refer to the `RSE guidelines <https://rse-guidelines.readthedocs.io/en/latest/intro.html>`_.

doc/index.rst

+7-9
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
|
66
7-
.. image:: https://img.shields.io/github/release/modsim/cadet.svg
8-
:target: https://github.com/modsim/CADET/releases
7+
.. image:: https://img.shields.io/github/release/cadet/cadet-core.svg
8+
:target: https://github.com/cadet/cadet-core/releases
99

10-
.. image:: https://github.com/modsim/CADET/actions/workflows/ci.yml/badge.svg?branch=master
11-
:target: https://github.com/modsim/CADET/actions/workflows/ci.yml?query=branch%3Amaster
10+
.. image:: https://github.com/cadet/cadet-core/actions/workflows/ci.yml/badge.svg?branch=master
11+
:target: https://github.com/cadet/cadet-core/actions/workflows/ci.yml?query=branch%3Amaster
1212

1313
.. image:: https://anaconda.org/conda-forge/cadet/badges/downloads.svg
1414
:target: https://anaconda.org/conda-forge/cadet
@@ -27,7 +27,7 @@ CADET can handle arbitrary sequences and networks of unit operations, including
2727
The resulting models are solved with state-of-the-art mathematical algorithms and scientific computing techniques.
2828

2929
- **Forum:** https://forum.cadet-web.de
30-
- **Source:** https://github.com/modsim/cadet
30+
- **Source:** https://github.com/cadet/cadet-core
3131
- **Demo:** http://cadet-web.de
3232
- **Newsletter:** https://cadet-web.de/newsletter/
3333

@@ -68,7 +68,7 @@ For non-developers, it is recommended to upgrade from release to release instead
6868
Bugs
6969
----
7070

71-
Please report any bugs that you find `here <https://github.com/modsim/cadet/issues>`_. Or, even better, fork the repository on `GitHub <https://github.com/modsim/cadet>`_ and create a pull request (PR) with the fix.
71+
Please report any bugs that you find `here <https://github.com/cadet/cadet-core/issues>`_. Or, even better, fork the repository on `GitHub <https://github.com/cadet/cadet-core>`_ and create a pull request (PR) with the fix.
7272

7373
Donations
7474
---------
@@ -79,8 +79,6 @@ Donations
7979
Citing
8080
------
8181

82-
Citing
83-
------------
8482
The development of CADET has been a collaborative effort, with multiple dedicated individuals contributing their expertise to create a powerful and versatile open-source software tool.
8583
Countless hours of hard work have been invested to provide the scientific community with a valuable resource.
8684
As an open-source project, CADET relies on the support and recognition from users and researchers to thrive.
@@ -107,7 +105,7 @@ Selected applications that demonstrate the capabilities and use-cases of CADET a
107105
Acknowledgments
108106
---------------
109107

110-
Please refer to the `list of contributors <https://github.com/modsim/CADET/blob/master/CONTRIBUTORS.md>`_ who helped building and funding this project.
108+
Please refer to the `list of contributors <https://github.com/cadet/cadet-core/blob/master/CONTRIBUTORS.md>`_ who helped building and funding this project.
111109

112110

113111
.. toctree::

0 commit comments

Comments
 (0)