1. 08 11月, 2019 1 次提交
  2. 07 11月, 2019 1 次提交
    • R
      Update source files for deprecation at 3.0 · 936c2b9e
      Richard Levitte 提交于
      Previous macros suggested that from 3.0, we're only allowed to
      deprecate things at a major version.  However, there's no policy
      stating this, but there is for removal, saying that to remove
      something, it must have been deprecated for 5 years, and that removal
      can only happen at a major version.
      
      Meanwhile, the semantic versioning rule is that deprecation should
      trigger a MINOR version update, which is reflected in the macro names
      as of this change.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/10364)
      936c2b9e
  3. 04 11月, 2019 1 次提交
  4. 07 10月, 2019 1 次提交
  5. 30 9月, 2019 2 次提交
  6. 03 9月, 2019 1 次提交
  7. 16 7月, 2019 1 次提交
  8. 12 7月, 2019 1 次提交
  9. 02 7月, 2019 2 次提交
  10. 01 7月, 2019 1 次提交
  11. 23 5月, 2019 1 次提交
  12. 12 4月, 2019 2 次提交
  13. 19 3月, 2019 2 次提交
  14. 25 1月, 2019 1 次提交
  15. 12 12月, 2018 1 次提交
  16. 06 12月, 2018 2 次提交
    • R
    • R
      Switch to MAJOR.MINOR.PATCH versioning and version 3.0.0-dev · 3a63dbef
      Richard Levitte 提交于
      We're strictly use version numbers of the form MAJOR.MINOR.PATCH.
      Letter releases are things of days past.
      
      The most central change is that we now express the version number with
      three macros, one for each part of the version number:
      
          OPENSSL_VERSION_MAJOR
          OPENSSL_VERSION_MINOR
          OPENSSL_VERSION_PATCH
      
      We also provide two additional macros to express pre-release and build
      metadata information (also specified in semantic versioning):
      
          OPENSSL_VERSION_PRE_RELEASE
          OPENSSL_VERSION_BUILD_METADATA
      
      To get the library's idea of all those values, we introduce the
      following functions:
      
          unsigned int OPENSSL_version_major(void);
          unsigned int OPENSSL_version_minor(void);
          unsigned int OPENSSL_version_patch(void);
          const char *OPENSSL_version_pre_release(void);
          const char *OPENSSL_version_build_metadata(void);
      
      Additionally, for shared library versioning (which is out of scope in
      semantic versioning, but that we still need):
      
          OPENSSL_SHLIB_VERSION
      
      We also provide a macro that contains the release date.  This is not
      part of the version number, but is extra information that we want to
      be able to display:
      
          OPENSSL_RELEASE_DATE
      
      Finally, also provide the following convenience functions:
      
          const char *OPENSSL_version_text(void);
          const char *OPENSSL_version_text_full(void);
      
      The following macros and functions are deprecated, and while currently
      existing for backward compatibility, they are expected to disappear:
      
          OPENSSL_VERSION_NUMBER
          OPENSSL_VERSION_TEXT
          OPENSSL_VERSION
          OpenSSL_version_num()
          OpenSSL_version()
      
      Also, this function is introduced to replace OpenSSL_version() for all
      indexes except for OPENSSL_VERSION:
      
          OPENSSL_info()
      
      For configuration, the option 'newversion-only' is added to disable all
      the macros and functions that are mentioned as deprecated above.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      Reviewed-by: NMatthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/7724)
      3a63dbef
  17. 13 10月, 2018 1 次提交
  18. 12 9月, 2018 1 次提交
  19. 11 9月, 2018 1 次提交
  20. 07 9月, 2018 1 次提交
  21. 12 7月, 2018 1 次提交
  22. 25 6月, 2018 1 次提交
  23. 31 5月, 2018 3 次提交
  24. 21 5月, 2018 1 次提交
  25. 13 5月, 2018 2 次提交
  26. 03 5月, 2018 1 次提交
  27. 09 3月, 2018 1 次提交
  28. 01 2月, 2018 1 次提交
  29. 23 1月, 2018 1 次提交
  30. 22 1月, 2018 1 次提交
  31. 19 1月, 2018 1 次提交
  32. 12 1月, 2018 1 次提交