Skip to content

Commit 007264f

Browse files
author
Jenkins
committed
Update release version and SONAME for v52.6.0
Signed-off-by: Jenkins <[email protected]>
1 parent d4207ce commit 007264f

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
2424

2525
project(
2626
ArmCompute
27-
VERSION 0.0.0
27+
VERSION 52.6.0
2828
DESCRIPTION
2929
"The Compute Library is a collection of low-level machine learning functions \
3030
optimized for Arm® Cortex®-A, Arm® Neoverse™ CPU and Arm® Mali™ GPU \
@@ -365,7 +365,7 @@ configure_package_config_file(
365365
# Configure *ConfigVersion.cmake which exports the version info
366366
write_basic_package_version_file(
367367
"${ARM_COMPUTE_CONFIG_VERSION_OUTPUT_FILE}"
368-
VERSION ${${PROJECT_NAME}_VERSION}
368+
VERSION 52.6.0
369369
COMPATIBILITY AnyNewerVersion
370370
)
371371

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
# Compute Library [![acl-release-shield]][acl-release]
1818

19-
[acl-release-shield]: https://img.shields.io/github/v/release/ARM-software/ComputeLibrary?label=latest&color=green
20-
[acl-release]: https://github.com/ARM-software/ComputeLibrary/releases/latest
19+
[acl-release-shield]: https://img.shields.io/badge/version-52.6.0-green
20+
[acl-release]: https://github.com/ARM-software/ComputeLibrary/releases/v52.6.0
2121

2222
The Compute Library is a collection of low-level machine learning functions optimized for Arm® Cortex®-A, Arm® Neoverse™ and Arm® Mali™ GPUs architectures.<br>
2323

@@ -37,8 +37,8 @@ Key Features:
3737
## Documentation
3838
[![docs-shield]][docs-index]
3939

40-
[docs-shield]: https://img.shields.io/badge/documentation-latest-green
41-
[docs-index]: https://artificial-intelligence.sites.arm.com/computelibrary/latest/index.xhtml
40+
[docs-shield]: https://img.shields.io/badge/documentation-52.6.0-green
41+
[docs-index]: https://artificial-intelligence.sites.arm.com/computelibrary/v52.6.0/index.xhtml
4242

4343
> Note: The documentation includes the reference API, changelogs, build guide, contribution guide, errata, etc.
4444
@@ -92,7 +92,7 @@ Pre-build binaries are generated with the following security / good coding pract
9292

9393
**⚠ Important** Bazel and CMake builds are experimental CPU only builds, please see the [documentation][docs-howtobuild] for more details.
9494

95-
[docs-howtobuild]: https://artificial-intelligence.sites.arm.com/computelibrary/latest/how_to_build.xhtml
95+
[docs-howtobuild]: https://artificial-intelligence.sites.arm.com/computelibrary/v52.6.0/how_to_build.xhtml
9696

9797
<br>
9898

@@ -101,7 +101,7 @@ Pre-build binaries are generated with the following security / good coding pract
101101
Contributions to the Compute Library are more than welcome.
102102
If you are interested in contributing, please have a look at our [how to contribute guidelines][docs-contributionguidelines].
103103

104-
[docs-contributionguidelines]: https://artificial-intelligence.sites.arm.com/computelibrary/latest/contribution_guidelines.xhtml
104+
[docs-contributionguidelines]: https://artificial-intelligence.sites.arm.com/computelibrary/v52.6.0/contribution_guidelines.xhtml
105105

106106
### Developer Certificate of Origin (DCO)
107107
Before the Compute Library accepts your contribution, you need to certify its origin and give us your permission. To manage this process we use the Developer Certificate of Origin (DCO) V1.1 (https://developercertificate.org/)

SConscript

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ import codecs
3333
import platform
3434
import SCons
3535

36-
VERSION = "v0.0-unreleased"
37-
LIBRARY_VERSION_MAJOR = 38
38-
LIBRARY_VERSION_MINOR = 0
39-
LIBRARY_VERSION_PATCH = 0
36+
VERSION = "v52.6.0"
37+
LIBRARY_VERSION_MAJOR = 52
38+
LIBRARY_VERSION_MINOR = 6
39+
LIBRARY_VERSION_PATCH = 0
4040
SONAME_VERSION = str(LIBRARY_VERSION_MAJOR) + "." + str(LIBRARY_VERSION_MINOR) + "." + str(LIBRARY_VERSION_PATCH)
4141

4242
Import('env')

docs/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ PROJECT_NAME = "Compute Library"
6060
# could be handy for archiving the generated documentation or if some version
6161
# control system is used.
6262

63-
PROJECT_NUMBER = 0.0
63+
PROJECT_NUMBER = 52.6.0
6464

6565
# Using the PROJECT_BRIEF tag one can provide an optional one line description
6666
# for a project that appears at the top of each page and should give viewer a

0 commit comments

Comments
 (0)