Skip to content

Commit

Permalink
Renaming of submodules and cleanup of repository
Browse files Browse the repository at this point in the history
  • Loading branch information
auto-differentiation-dev committed Apr 3, 2024
1 parent 0fdde70 commit 0caa7ef
Show file tree
Hide file tree
Showing 123 changed files with 54 additions and 7,559 deletions.
6 changes: 0 additions & 6 deletions .ci/csharp.build

This file was deleted.

4 changes: 0 additions & 4 deletions .ci/csharp.check

This file was deleted.

2 changes: 0 additions & 2 deletions .ci/csharp.install

This file was deleted.

9 changes: 0 additions & 9 deletions .ci/java-new.build

This file was deleted.

4 changes: 0 additions & 4 deletions .ci/java-new.check

This file was deleted.

2 changes: 0 additions & 2 deletions .ci/java-new.install

This file was deleted.

8 changes: 0 additions & 8 deletions .ci/java-old.build

This file was deleted.

4 changes: 0 additions & 4 deletions .ci/java-old.check

This file was deleted.

2 changes: 0 additions & 2 deletions .ci/java-old.install

This file was deleted.

7 changes: 0 additions & 7 deletions .ci/python.build

This file was deleted.

11 changes: 0 additions & 11 deletions .ci/python.check

This file was deleted.

8 changes: 0 additions & 8 deletions .ci/python.install

This file was deleted.

10 changes: 0 additions & 10 deletions .ci/r.build

This file was deleted.

9 changes: 0 additions & 9 deletions .ci/r.check

This file was deleted.

4 changes: 0 additions & 4 deletions .ci/r.install

This file was deleted.

7 changes: 0 additions & 7 deletions .ci/scala.build

This file was deleted.

4 changes: 0 additions & 4 deletions .ci/scala.check

This file was deleted.

2 changes: 0 additions & 2 deletions .ci/scala.install

This file was deleted.

40 changes: 2 additions & 38 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,40 +1,11 @@
# Compilation artifacts
configure
aclocal.m4
autom4te.cache
config.log
config.status
config/
CSharp/cpp/quantlib_wrap.cpp
CSharp/cpp/quantlib_wrap.h
CSharp/cpp/build
CSharp/csharp/obj
CSharp/examples/*/bin
CSharp/examples/*/obj
CSharp/.vs/
Java/bin/
Java/quantlib_wrap.cpp
Java/quantlib_wrap.h
Perl/Makefile.quantlib
Perl/QuantLib.bs
Perl/blib/
Perl/pm_to_blib
Perl/quantlib_wrap.cpp
Perl/MYMETA.yml
Perl/MYMETA.json
Python/QuantLib/quantlib_wrap.cpp
Python/.cache/
Python/QuantLib.egg-info
Python/QuantLib_Python.egg-info
Python/dist
Python/examples/*.ipynb
Python/examples/.ipynb_checkpoints
R/src/QuantLib.cpp
R/makeRData.Rout
R/src/symbols.rds
R.Rcheck
Ruby/extension.mak
Ruby/quantlib_wrap.cpp

# Build outputs
**/x64/Debug
Expand Down Expand Up @@ -83,18 +54,11 @@ testCaseCollection.xml
*.ipch

# Outputs
CSharp/csharp/*.cs
CSharp/NQuantLib.dll
Java/QuantLib.jar
Java/*.jnilib
Java/org/
Perl/QuantLib.pm
Python/QuantLib_Risks/QuantLib_Risks.py
Python/build
R/R/QuantLib.R
R/QuantLib.RData

.vscode
**/venv
/build
**/.venv
**/.venv
__pycache__
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
[submodule "lib/XAD"]
path = lib/XAD
url = https://github.com/auto-differentiation/XAD.git
[submodule "lib/quantlib-xad"]
path = lib/quantlib-xad
url = https://github.com/auto-differentiation/quantlib-xad.git
[submodule "lib/QuantLib-Risks-Cpp"]
path = lib/QuantLibRisks-Cpp
url = https://github.com/auto-differentiation/QuantLib-Risks-Cpp.git
2 changes: 0 additions & 2 deletions .misspell-fixer.ignore

This file was deleted.

11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ the underlying QuantLib-SWIG changelog.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.33-post1] - 2024-03-26
## [1.33.3] - 2024-04-03

- Builds against renamed xad-autodiff -> xad Python package
- Cleanup of repository

## [1.33.2] - 2024-03-29

- Renaming quantlib-risks -> QuantLib-Risks for consistency
- Fixing markdown annotations in examples
Expand All @@ -18,6 +23,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Initial release, matching QuantLib Python bindings version 1.33


[1.33-post1]: https://github.com/auto-differentiation/QuantLib-Risks/compare/v1.33...v1.33-post1
[1.33.3]: https://github.com/auto-differentiation/QuantLib-Risks/compare/v1.33.2...v1.33.3

[1.33.2]: https://github.com/auto-differentiation/QuantLib-Risks/compare/v1.33...v1.33.2

[1.33]: https://github.com/auto-differentiation/QuantLib-Risks/releases/tag/v1.33
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
##############################################################################

cmake_minimum_required(VERSION 3.15.0)
project(QuantLib_Risks LANGUAGES CXX VERSION 1.33.2)
project(QuantLib_Risks LANGUAGES CXX VERSION 1.33.3)

# For MSVC RUNTIME LIBRARY, need CMP0091=NEW and cmake 3.15+
cmake_policy(SET CMP0091 NEW)
set(PACKAGE_VERSION "${PROJECT_VERSION}")
set(PACKAGE_VERSION_HEX "0x013302f0")
set(PACKAGE_VERSION_HEX "0x013303f0")
set(QLR_VERSION ${PACKAGE_VERSION})
set(QLR_HEX_VERSION ${PACKAGE_VERSION_HEX})


find_package(QuantLibXad REQUIRED)
find_package(QuantLib-Risks REQUIRED)
find_package(SWIG REQUIRED)

include(UseSWIG)
Expand Down
68 changes: 0 additions & 68 deletions CSharp/Makefile.am

This file was deleted.

13 changes: 0 additions & 13 deletions CSharp/QuantLib.props

This file was deleted.

Loading

0 comments on commit 0caa7ef

Please sign in to comment.