Skip to content

Commit

Permalink
Update and release version 4.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
rcurtin committed Nov 27, 2023
1 parent 751ba46 commit c8726ff
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -339,7 +339,7 @@ if (NOT DOWNLOAD_DEPENDENCIES)
else()
find_package(Ensmallen "${ENSMALLEN_VERSION}")
if (NOT ENSMALLEN_FOUND)
get_deps(https://www.ensmallen.org/files/ensmallen-latest.tar.gz ensmallen ensmallen-latest.tar.gz)
get_deps(https://www.ensmallen.org/files/ensmallen-2.20.0.tar.gz ensmallen ensmallen-latest.tar.gz)
set(ENSMALLEN_INCLUDE_DIR ${GENERIC_INCLUDE_DIR})
find_package(Ensmallen REQUIRED)
endif()
Expand Down
4 changes: 2 additions & 2 deletions HISTORY.md
@@ -1,5 +1,5 @@
### mlpack ?.?.?
###### ????-??-??
### mlpack 4.3.0
###### 2023-11-22
* Fix include ordering issue for `LinearRegression` (#3541).

* Fix L1 regularization in case where weight is zero (#3545).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -21,7 +21,7 @@ src="https://cdn.rawgit.com/mlpack/mlpack.org/e7d36ed8/mlpack-black.svg" style="
<p align="center">
<em>
Download:
<a href="https://www.mlpack.org/files/mlpack-4.2.1.tar.gz">current stable version (4.2.1)</a>
<a href="https://www.mlpack.org/files/mlpack-4.3.0.tar.gz">current stable version (4.3.0)</a>
</em>
</p>

Expand Down
8 changes: 4 additions & 4 deletions doc/examples/sample-ml-app/README.txt
Expand Up @@ -21,15 +21,15 @@ and library files into C:\mlpack\.
* ensmallen: https://ensmallen.org/files/ensmallen-2.19.0.tar.gz
Download the .tar.gz, and extract it into C:\mlpack\ensmallen-2.19.0\

Now, install mlpack into C:\mlpack\mlpack-4.2.1\. If you downloaded the mlpack
Now, install mlpack into C:\mlpack\mlpack-4.3.0\. If you downloaded the mlpack
source, you can either use the Windows build guide (see
doc/user/build_windows.md) to build and install, or, since mlpack is
header-only, copy the src/ directory to C:\mlpack\mlpack-4.2.1\ and rename it
"include" (so there will now be a directory C:\mlpack\mlpack-4.2.1\include\,
header-only, copy the src/ directory to C:\mlpack\mlpack-4.3.0\ and rename it
"include" (so there will now be a directory C:\mlpack\mlpack-4.3.0\include\,
which contains only base.hpp and the mlpack/ subdirectory).

Alternately, if you downloaded the Windows MSI installer, you can install to
C:\mlpack\mlpack-4.2.1\.
C:\mlpack\mlpack-4.3.0\.

Once all of that setup is done, the example should compile as-is.

Expand Down
Expand Up @@ -104,7 +104,7 @@
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>Default</ConformanceMode>
<AdditionalIncludeDirectories>C:\mlpack\armadillo-11.4.1\include;C:\mlpack\mlpack-4.2.1\include\;C:\mlpack\cereal-1.3.2\include;C:\mlpack\ensmallen-2.19.0\include\%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>C:\mlpack\armadillo-11.4.1\include;C:\mlpack\mlpack-4.3.0\include\;C:\mlpack\cereal-1.3.2\include;C:\mlpack\ensmallen-2.19.0\include\%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<LanguageStandard>stdcpp17</LanguageStandard>
<OpenMPSupport>false</OpenMPSupport>
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
Expand Down
4 changes: 2 additions & 2 deletions doc/user/sample_ml_app.md
Expand Up @@ -27,13 +27,13 @@ dependencies in Release Mode).
- Under C/C++ > General > Additional Include Directories add:
```
- C:\mlpack\armadillo-9.800.3\include
- C:\mlpack\mlpack-4.2.1\src
- C:\mlpack\mlpack-4.3.0\src
- C:\mlpack\ensmallen-2.19.0\include
- C:\mlpack\cereal-3.1.2\include
```
- Under Build Events > Post-Build Event > Command Line add:
```
- xcopy /y "C:\mlpack\mlpack-4.2.1\packages\OpenBLAS.0.2.14.1\lib\native\bin\x64\*.dll" $(OutDir)
- xcopy /y "C:\mlpack\mlpack-4.3.0\packages\OpenBLAS.0.2.14.1\lib\native\bin\x64\*.dll" $(OutDir)
```

*Note*: recent versions of Visual Studio set "Conformance Mode" enabled by
Expand Down
4 changes: 2 additions & 2 deletions src/mlpack/core/util/version.hpp
Expand Up @@ -17,8 +17,8 @@
// The version of mlpack. If this is a git repository, this will be a version
// with higher number than the most recent release.
#define MLPACK_VERSION_MAJOR 4
#define MLPACK_VERSION_MINOR 2
#define MLPACK_VERSION_PATCH 2
#define MLPACK_VERSION_MINOR 3
#define MLPACK_VERSION_PATCH 0

// The name of the version (for use by --version).
namespace mlpack {
Expand Down

0 comments on commit c8726ff

Please sign in to comment.