Skip to content

Commit

Permalink
Merge branch 'feature/update_expat_2_5_0_v4.3' into 'release/v4.3'
Browse files Browse the repository at this point in the history
expat: Upgrade expat to release v2.5.0

See merge request espressif/esp-idf!21295
  • Loading branch information
AdityaHPatwardhan committed Nov 30, 2022
2 parents 114ce9b + 6ff2df0 commit ee7953d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/expat/expat
Submodule expat updated 52 files
+3 −15 .github/workflows/autotools-cmake.yml
+1 −1 .github/workflows/cmake-required-version.yml
+25 −16 .github/workflows/coverage.yml
+2 −2 .github/workflows/cppcheck.yml
+1 −0 .github/workflows/data/expat_config_h_cmake__expected.txt
+1 −0 .github/workflows/data/expat_config_h_in__expected.txt
+2 −2 .github/workflows/expat_config_h.yml
+38 −15 .github/workflows/linux.yml
+2 −2 .github/workflows/macos.yml
+2 −2 .github/workflows/scripts/list-shared-library-symbols.sh
+1 −1 .github/workflows/valid-xml.yml
+1 −0 .mailmap
+1 −1 .travis.sh
+21 −0 COPYING
+28 −1 appveyor.yml
+6 −6 expat/CMake.README
+165 −122 expat/CMakeLists.txt
+1 −1 expat/COPYING
+94 −1 expat/Changes
+11 −11 expat/README.md
+4 −3 expat/apply-clang-format.sh
+2 −2 expat/buildconf.sh
+2 −2 expat/cmake/autotools/expat-noconfig__linux.cmake.in
+2 −2 expat/cmake/autotools/expat-noconfig__macos.cmake.in
+2 −2 expat/cmake/autotools/expat-noconfig__windows.cmake.in
+42 −34 expat/cmake/autotools/expat.cmake
+1 −0 expat/cmake/mingw-toolchain.cmake
+9 −5 expat/configure.ac
+14 −12 expat/coverage.sh
+7 −3 expat/doc/reference.html
+1 −1 expat/doc/xmlwf.xml
+33 −14 expat/examples/elements.c
+39 −38 expat/examples/outline.c
+6 −1 expat/expat_config.h.cmake
+3 −1 expat/fix-xmltest-log.sh
+1 −0 expat/fuzz/.gitignore
+2 −3 expat/lib/Makefile.am
+2 −2 expat/lib/expat.h
+4 −2 expat/lib/internal.h
+3 −4 expat/lib/libexpat.def.cmake
+0 −80 expat/lib/libexpatw.def
+1 −1 expat/lib/siphash.h
+43 −21 expat/lib/xmlparse.c
+4 −3 expat/lib/xmltok.c
+4 −2 expat/lib/xmltok_impl.c
+1 −1 expat/lib/xmltok_impl.h
+4 −4 expat/qa.sh
+249 −4 expat/tests/runtests.c
+5 −5 expat/win32/build_expat_iss.bat
+2 −2 expat/win32/expat.iss
+3 −2 expat/xmlwf/win32filemap.c
+2 −1 expat/xmlwf/xmlwf.c
6 changes: 3 additions & 3 deletions components/expat/port/include/expat_config.h
Expand Up @@ -63,7 +63,7 @@
#define PACKAGE_NAME "expat"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "expat 2.4.8"
#define PACKAGE_STRING "expat 2.5.0"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "expat"
Expand All @@ -72,13 +72,13 @@
#define PACKAGE_URL ""

/* Define to the version of this package. */
#define PACKAGE_VERSION "2.4.8"
#define PACKAGE_VERSION "2.5.0"

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1

/* Version number of package */
#define VERSION "2.4.8"
#define VERSION "2.5.0"

/* whether byteorder is bigendian */
/* #undef WORDS_BIGENDIAN */
Expand Down

0 comments on commit ee7953d

Please sign in to comment.