Skip to content

Commit

Permalink
Bump version to 1.0.1
Browse files Browse the repository at this point in the history
Summary: As title.

Reviewed By: janherling

Differential Revision:
D61920916

Privacy Context Container: L1191897

fbshipit-source-id: a9d481a91fd6c51eab1d8e68dae2d2c047f1163b
  • Loading branch information
enpe authored and facebook-github-bot committed Aug 28, 2024
1 parent afc3ced commit 742c2da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions impl/ocean/base/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
#define OCEAN_VERSION_MINOR 0

/// The patch version number of Ocean.
#define OCEAN_VERSION_PATCH 0
#define OCEAN_VERSION_PATCH 1

/// Indicates whether this is a development or a release version.
#define OCEAN_VERSION_IS_DEVELEOPMENT_BRANCH 1
#define OCEAN_VERSION_IS_DEVELEOPMENT_BRANCH 0

/// Combines the major, minor, patch, and development branch version numbers into a single version number.
#define OCEAN_VERSIONIZE(major, minor, patch, isDevelopmentBranch) (major * 1000000 + minor * 1000 + patch) * 2 + (isDevelopmentBranch != 0 ? 1 : 0)
Expand Down

0 comments on commit 742c2da

Please sign in to comment.