[libcxx] r351320 - Bump the trunk version to 9.0.0svn

Hans Wennborg hans at hanshq.net
Wed Jan 16 02:57:02 PST 2019


Author: hans
Date: Wed Jan 16 02:57:02 2019
New Revision: 351320

URL: http://llvm.org/viewvc/llvm-project?rev=351320&view=rev
Log:
Bump the trunk version to 9.0.0svn

Modified:
    libcxx/trunk/CMakeLists.txt
    libcxx/trunk/docs/ReleaseNotes.rst
    libcxx/trunk/docs/conf.py
    libcxx/trunk/include/__config
    libcxx/trunk/include/__libcpp_version

Modified: libcxx/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/CMakeLists.txt?rev=351320&r1=351319&r2=351320&view=diff
==============================================================================
--- libcxx/trunk/CMakeLists.txt (original)
+++ libcxx/trunk/CMakeLists.txt Wed Jan 16 02:57:02 2019
@@ -27,7 +27,7 @@ if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURR
   project(libcxx CXX C)
 
   set(PACKAGE_NAME libcxx)
-  set(PACKAGE_VERSION 8.0.0svn)
+  set(PACKAGE_VERSION 9.0.0svn)
   set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
   set(PACKAGE_BUGREPORT "llvm-bugs at lists.llvm.org")
 

Modified: libcxx/trunk/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/docs/ReleaseNotes.rst?rev=351320&r1=351319&r2=351320&view=diff
==============================================================================
--- libcxx/trunk/docs/ReleaseNotes.rst (original)
+++ libcxx/trunk/docs/ReleaseNotes.rst Wed Jan 16 02:57:02 2019
@@ -1,5 +1,5 @@
 ========================================
-Libc++ 8.0.0 (In-Progress) Release Notes
+Libc++ 9.0.0 (In-Progress) Release Notes
 ========================================
 
 .. contents::
@@ -10,7 +10,7 @@ Written by the `Libc++ Team <https://lib
 
 .. warning::
 
-   These are in-progress notes for the upcoming libc++ 8 release.
+   These are in-progress notes for the upcoming libc++ 9 release.
    Release notes for previous releases can be found on
    `the Download Page <https://releases.llvm.org/download.html>`_.
 
@@ -18,7 +18,7 @@ Introduction
 ============
 
 This document contains the release notes for the libc++ C++ Standard Library,
-part of the LLVM Compiler Infrastructure, release 8.0.0. Here we describe the
+part of the LLVM Compiler Infrastructure, release 9.0.0. Here we describe the
 status of libc++ in some detail, including major improvements from the previous
 release and new feature work. For the general LLVM release notes, see `the LLVM
 documentation <https://llvm.org/docs/ReleaseNotes.html>`_. All LLVM releases may
@@ -32,7 +32,7 @@ main Libc++ web page, this document appl
 the current one. To see the release notes for a specific release, please
 see the `releases page <https://llvm.org/releases/>`_.
 
-What's New in Libc++ 8.0.0?
+What's New in Libc++ 9.0.0?
 ===========================
 
 New Features
@@ -40,23 +40,4 @@ New Features
 
 API Changes
 -----------
-- Building libc++ for Mac OSX 10.6 is not supported anymore.
-- Starting with LLVM 8.0.0, users that wish to link together translation units
-  built with different versions of libc++'s headers into the same final linked
-  image MUST define the _LIBCPP_HIDE_FROM_ABI_PER_TU macro to 1 when building
-  those translation units. Not defining _LIBCPP_HIDE_FROM_ABI_PER_TU to 1 and
-  linking translation units built with different versions of libc++'s headers
-  together may lead to ODR violations and ABI issues. On the flipside, code
-  size improvements should be expected for everyone not defining the macro.
-- Starting with LLVM 8.0.0, std::dynarray has been removed from the library.
-  std::dynarray was a feature proposed for C++14 that was pulled from the
-  Standard at the last minute and was never standardized. Since there are no
-  plans to standardize this facility it is being removed.
-- Starting with LLVM 8.0.0, std::bad_array_length has been removed from the
-  library. std::bad_array_length was a feature proposed for C++14 alongside
-  std::dynarray, but it never actually made it into the C++ Standard. There
-  are no plans to standardize this feature at this time. Formally speaking,
-  this removal constitutes an ABI break because the symbols were shipped in
-  the shared library. However, on macOS systems, the feature was not usable
-  because it was hidden behind availability annotations. We do not expect
-  any actual breakage to happen from this change.
+- ...

Modified: libcxx/trunk/docs/conf.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/docs/conf.py?rev=351320&r1=351319&r2=351320&view=diff
==============================================================================
--- libcxx/trunk/docs/conf.py (original)
+++ libcxx/trunk/docs/conf.py Wed Jan 16 02:57:02 2019
@@ -47,9 +47,9 @@ copyright = u'2011-2018, LLVM Project'
 # built documents.
 #
 # The short X.Y version.
-version = '8.0'
+version = '9.0'
 # The full version, including alpha/beta/rc tags.
-release = '8.0'
+release = '9.0'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.

Modified: libcxx/trunk/include/__config
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/__config?rev=351320&r1=351319&r2=351320&view=diff
==============================================================================
--- libcxx/trunk/include/__config (original)
+++ libcxx/trunk/include/__config Wed Jan 16 02:57:02 2019
@@ -33,7 +33,7 @@
 #  define _GNUC_VER_NEW 0
 #endif
 
-#define _LIBCPP_VERSION 8000
+#define _LIBCPP_VERSION 9000
 
 #ifndef _LIBCPP_ABI_VERSION
 #  define _LIBCPP_ABI_VERSION 1

Modified: libcxx/trunk/include/__libcpp_version
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/__libcpp_version?rev=351320&r1=351319&r2=351320&view=diff
==============================================================================
--- libcxx/trunk/include/__libcpp_version (original)
+++ libcxx/trunk/include/__libcpp_version Wed Jan 16 02:57:02 2019
@@ -1 +1 @@
-8000
+9000




More information about the libcxx-commits mailing list