Skip to content

Commit

Permalink
0.4.2 version
Browse files Browse the repository at this point in the history
  • Loading branch information
aksnzhy committed Mar 12, 2019
1 parent 43fd681 commit 8066cbf
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 9 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<img src="https://github.com/aksnzhy/xLearn/raw/master/img/xlearn_logo.png" width = "400"/>

[![Hex.pm](https://img.shields.io/hexpm/l/plug.svg)](./LICENCE)
[![Project Status](https://img.shields.io/badge/version-0.4.1-green.svg)]()
[![Project Status](https://img.shields.io/badge/version-0.4.2-green.svg)]()

## What is xLearn?

Expand Down Expand Up @@ -47,6 +47,9 @@ xLearn has been developed and used by many active community members. Your help i

## What's New

- 2019-3-12 xLearn 0.4.2 version release. Main update:
* Release Windows version of xLearn

- 2019-1-30 xLearn 0.4.1 version release. Main update:
* More flexible data reader

Expand Down
2 changes: 1 addition & 1 deletion doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ You will see the following message if the installation is successful: ::
> <| |___| __/ (_| | | | | | |
/_/\_\_____/\___|\__,_|_| |_| |_|

xLearn -- 0.41 Version --
xLearn -- 0.42 Version --
-------------------------------------------------------------------------


Expand Down
3 changes: 3 additions & 0 deletions doc/news.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## What's New

- 2019-3-12 xLearn 0.4.2 version release. Main update:
* Release Windows version of xLearn

- 2019-1-30 xLearn 0.4.1 version release. Main update:
* More flexible data reader.

Expand Down
2 changes: 1 addition & 1 deletion doc/python_package.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If you install xLearn Python package successfully, you will see: ::
> <| |___| __/ (_| | | | | | |
/_/\_\_____/\___|\__,_|_| |_| |_|

xLearn -- 0.41 Version --
xLearn -- 0.42 Version --
-------------------------------------------------------------------------

Quick Start
Expand Down
2 changes: 1 addition & 1 deletion makeR.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ rm -r xlearn
cp -r R-package xlearn
cp -r src xlearn/src/src
R CMD build xlearn
R CMD INSTALL xlearn_0.4.1.tar.gz
R CMD INSTALL xlearn_0.4.2.tar.gz
2 changes: 1 addition & 1 deletion python-package/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If you install xLearn Python package successfully, you will see ::
> <| |___| __/ (_| | | | | | |
/_/\_\_____/\___|\__,_|_| |_| |_|

xLearn -- 0.41 Version --
xLearn -- 0.42 Version --
-------------------------------------------------------------------------

Quick Start
Expand Down
2 changes: 1 addition & 1 deletion python-package/xlearn/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.1
0.4.2
1 change: 1 addition & 0 deletions src/base/format_print.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@
namespace Color {

bool Modifier::is_first_ = true;

} // namespace Color
2 changes: 1 addition & 1 deletion src/c_api/c_api.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ XL_DLL int XLearnHello() {
" \\ \\/ / | / _ \\/ _` | '__| '_ \\ \n"
" > <| |___| __/ (_| | | | | | |\n"
" /_/\\_\\_____/\\___|\\__,_|_| |_| |_|\n\n"
" xLearn -- 0.41 Version --\n"
" xLearn -- 0.42 Version --\n"
"----------------------------------------------------------------------------------------------\n"
"\n";
Color::Modifier green(Color::FG_GREEN);
Expand Down
4 changes: 2 additions & 2 deletions src/solver/solver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ namespace xLearn {
// > <| |___| __/ (_| | | | | | |
// /_/\_\______\___|\__,_|_| |_| |_|
//
// xLearn -- 0.41 Version --
// xLearn -- 0.42 Version --
//------------------------------------------------------------------------------
void Solver::print_logo() const {
std::string logo =
Expand All @@ -53,7 +53,7 @@ void Solver::print_logo() const {
" \\ \\/ / | / _ \\/ _` | '__| '_ \\ \n"
" > <| |___| __/ (_| | | | | | |\n"
" /_/\\_\\_____/\\___|\\__,_|_| |_| |_|\n\n"
" xLearn -- 0.41 Version --\n"
" xLearn -- 0.42 Version --\n"
"----------------------------------------------------------------------------------------------\n"
"\n";
Color::Modifier green(Color::FG_GREEN);
Expand Down

0 comments on commit 8066cbf

Please sign in to comment.