Skip to content

Commit 48ca3b7

Browse files
committed
Release 4.0.3
1 parent e7a2270 commit 48ca3b7

File tree

8 files changed

+18
-8
lines changed

8 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
4.0.3
2+
===========
3+
January 08, 2018
4+
5+
* 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
6+
* Fixed segfault if we have </form> but not have a opening <form>. https://github.com/lexborisov/myhtml/issues/124
7+
* Fix cmake install path. https://github.com/lexborisov/myhtml/issues/126
8+
* Minor bug fixes
9+
110
4.0.2
211
===========
312
November 07, 2017

Makefile.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MODEST_BUILD_OS := UNDEF
55
#***************
66
PROJECT_VERSION_MAJOR := 4
77
PROJECT_VERSION_MINOR := 0
8-
PROJECT_VERSION_PATCH := 2
8+
PROJECT_VERSION_PATCH := 3
99

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This is one of module of the [Modest] project.
1313

1414
## Now
1515

16-
The current version is 4.0.2. [Last stable version](https://github.com/lexborisov/myhtml/releases/latest)
16+
The current version is 4.0.3. [Last stable version](https://github.com/lexborisov/myhtml/releases/latest)
1717

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

@@ -134,7 +134,7 @@ Alexander Borisov <[email protected]>
134134
135135
## COPYRIGHT AND LICENSE
136136
137-
Copyright (C) 2015-2017 Alexander Borisov
137+
Copyright (C) 2015-2018 Alexander Borisov
138138
139139
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
140140

debian/copyright

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Format: http://dep.debian.net/deps/dep5/
22
Files: *
3-
Copyright: 2015-2017 Alexander Borisov
3+
Copyright: 2015-2018 Alexander Borisov
44
License: LGPL
55
.
66
This is free software; you can redistribute it and/or modify it under the

rpm/libmyhtml.spec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: libmyhtml
2-
Version: 4.0.1
2+
Version: 4.0.3
33
Release: 1%{?dist}
44
Summary: MyHTML is a fast HTML Parser implemented as a pure C99 library.
55
License: LGPLv2.1
@@ -44,5 +44,6 @@ make install prefix=$RPM_BUILD_ROOT PROJECT_INSTALL_LIBRARY=%{_usr}/%{_lib} PROJ
4444
%{!?_licensedir:%global license %doc}
4545

4646
%changelog
47+
* Please, see https://github.com/lexborisov/myhtml/blob/master/CHANGELOG.md
4748
* Tue Mar 21 2017 Alexander Borisov <[email protected]> 4.0.0-1
4849
- Initial release

source/myhtml/api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
#define MyHTML_VERSION_MAJOR 4
3838
#define MyHTML_VERSION_MINOR 0
39-
#define MyHTML_VERSION_PATCH 2
39+
#define MyHTML_VERSION_PATCH 3
4040

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

source/myhtml/myosi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#define MyHTML_VERSION_MAJOR 4
2828
#define MyHTML_VERSION_MINOR 0
29-
#define MyHTML_VERSION_PATCH 2
29+
#define MyHTML_VERSION_PATCH 3
3030

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

source/myhtml/rules.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1887,7 +1887,7 @@ bool myhtml_insertion_mode_in_body(myhtml_tree_t* tree, myhtml_token_node_t* tok
18871887
}
18881888

18891889
myhtml_tree_node_t* current_node = myhtml_tree_current_node(tree);
1890-
if(current_node->tag_id != MyHTML_TAG_RTC || current_node->tag_id != MyHTML_TAG_RUBY) {
1890+
if(current_node->tag_id != MyHTML_TAG_RTC && current_node->tag_id != MyHTML_TAG_RUBY) {
18911891
// parse error
18921892
/* %EXTERNAL% VALIDATOR:RULES HAVE_NEED STATUS:ELEMENT_NO_EXPECTED LEVEL:ERROR */
18931893
/* %EXTERNAL% VALIDATOR:RULES HAVE_NEED_ADD HAVE:current_node->token NEED:NULL HAVE_TAG_ID:current_node->tag_id HAVE_NS:current_node->ns NEED_TAG_ID:MyHTML_TAG_RTC NEED_NS:MyHTML_NAMESPACE_HTML */

0 commit comments

Comments
 (0)