Skip to content

Commit

Permalink
Release 4.0.4. Delete R4.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lexborisov committed Jan 8, 2018
1 parent b9e9979 commit b398fbd
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 10 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
4.0.3
4.0.4
===========
January 08, 2018

* Updated ```CMakeLists.txt``` for cmake build. Added support for create Visual Studio Solution and the creation of packages for Linux systems. https://github.com/lexborisov/myhtml/issues/116
* Fixed segfault if we have </form> but not have a opening <form>. https://github.com/lexborisov/myhtml/issues/124
* Fix cmake install path. https://github.com/lexborisov/myhtml/issues/126
* Fixed cmake install path. https://github.com/lexborisov/myhtml/issues/126
* Fixed rpm changelog date
* Minor bug fixes

4.0.3
===========
January 08, 2018

* Delete

4.0.2
===========
November 07, 2017
Expand Down
2 changes: 1 addition & 1 deletion Makefile.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MODEST_BUILD_OS := UNDEF
#***************
PROJECT_VERSION_MAJOR := 4
PROJECT_VERSION_MINOR := 0
PROJECT_VERSION_PATCH := 3
PROJECT_VERSION_PATCH := 4

PROJECT_VERSION_STRING := $(PROJECT_VERSION_MAJOR).$(PROJECT_VERSION_MINOR).$(PROJECT_VERSION_PATCH)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This is one of module of the [Modest] project.

## Now

The current version is 4.0.3. [Last stable version](https://github.com/lexborisov/myhtml/releases/latest)
The current version is 4.0.4. [Last stable version](https://github.com/lexborisov/myhtml/releases/latest)

See [Releases](https://github.com/lexborisov/myhtml/releases)

Expand Down
2 changes: 1 addition & 1 deletion include/myhtml/api.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

#define MyHTML_VERSION_MAJOR 4
#define MyHTML_VERSION_MINOR 0
#define MyHTML_VERSION_PATCH 2
#define MyHTML_VERSION_PATCH 4

#define MyHTML_VERSION_STRING MyCORE_STR(MyHTML_VERSION_MAJOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_MINOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_PATCH)

Expand Down
2 changes: 1 addition & 1 deletion include/myhtml/myosi.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#define MyHTML_VERSION_MAJOR 4
#define MyHTML_VERSION_MINOR 0
#define MyHTML_VERSION_PATCH 2
#define MyHTML_VERSION_PATCH 4

#define MyHTML_VERSION_STRING MyCORE_STR(MyHTML_VERSION_MAJOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_MINOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_PATCH)

Expand Down
4 changes: 2 additions & 2 deletions rpm/libmyhtml.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: libmyhtml
Version: 4.0.3
Version: 4.0.4
Release: 1%{?dist}
Summary: MyHTML is a fast HTML Parser implemented as a pure C99 library.
License: LGPLv2.1
Expand Down Expand Up @@ -44,7 +44,7 @@ make install prefix=$RPM_BUILD_ROOT PROJECT_INSTALL_LIBRARY=%{_usr}/%{_lib} PROJ
%{!?_licensedir:%global license %doc}

%changelog
* Mon Jan 08 2018 Alexander Borisov <[email protected]> 4.0.3-1
* Mon Jan 08 2018 Alexander Borisov <[email protected]> 4.0.4-1
- Please, see https://github.com/lexborisov/myhtml/blob/master/CHANGELOG.md
* Tue Mar 21 2017 Alexander Borisov <[email protected]> 4.0.0-1
- Initial release
2 changes: 1 addition & 1 deletion source/myhtml/api.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

#define MyHTML_VERSION_MAJOR 4
#define MyHTML_VERSION_MINOR 0
#define MyHTML_VERSION_PATCH 3
#define MyHTML_VERSION_PATCH 4

#define MyHTML_VERSION_STRING MyCORE_STR(MyHTML_VERSION_MAJOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_MINOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_PATCH)

Expand Down
2 changes: 1 addition & 1 deletion source/myhtml/myosi.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#define MyHTML_VERSION_MAJOR 4
#define MyHTML_VERSION_MINOR 0
#define MyHTML_VERSION_PATCH 3
#define MyHTML_VERSION_PATCH 4

#define MyHTML_VERSION_STRING MyCORE_STR(MyHTML_VERSION_MAJOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_MINOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_PATCH)

Expand Down

0 comments on commit b398fbd

Please sign in to comment.