diff --git a/CMakeLists.txt b/CMakeLists.txt index 819df4f..468f3ea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.9) -project(fast_float VERSION 3.2.0 LANGUAGES CXX) +project(fast_float VERSION 3.3.0 LANGUAGES CXX) option(FASTFLOAT_TEST "Enable tests" OFF) set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ standard to be used") set(CMAKE_CXX_STANDARD_REQUIRED ON) diff --git a/LICENSE-APACHE b/LICENSE-APACHE index 261eeb9..26f4398 100644 --- a/LICENSE-APACHE +++ b/LICENSE-APACHE @@ -175,18 +175,7 @@ END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] + Copyright 2021 The fast_float authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/script/amalgamate.py b/script/amalgamate.py index c203b52..e18ead9 100644 --- a/script/amalgamate.py +++ b/script/amalgamate.py @@ -22,7 +22,7 @@ for filename in ['LICENSE-MIT', 'LICENSE-APACHE']: if filename == 'LICENSE-APACHE': lines = [ ' Copyright 2021 The fast_float authors\n', - *lines[189:-1] + *lines[179:-1] ] text = ''