Skip to content

Commit

Permalink
Update OS upstream version and add release notes for 1.0.0.0 release (#…
Browse files Browse the repository at this point in the history
…14)

* Update OS upstream version and add release notes for 1.0.0.0 release

Signed-off-by: Sruti Parthiban <[email protected]>

* Update OpenSearch version
  • Loading branch information
sruti1312 authored Jul 1, 2021
1 parent 12fb8d9 commit 290b5d0
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name: CI
on:
push:
branches:
- main
- "*"

pull_request:
branches:
- main
- "*"

jobs:
build:
Expand All @@ -32,11 +32,11 @@ jobs:
with:
repository: 'opensearch-project/OpenSearch'
path: OpenSearch
ref: '1.x'
ref: '1.0'

- name: Build OpenSearch
working-directory: ./OpenSearch
run: ./gradlew publishToMavenLocal -Dbuild.version_qualifier=rc1 -Dbuild.snapshot=false
run: ./gradlew publishToMavenLocal -Dbuild.snapshot=false

# TODO: Add tests and run in build
- name: Build perfTop artifacts
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
buildscript {

ext {
opensearch_version = System.getProperty("opensearch.version", "1.0.0-rc1")
opensearch_version = System.getProperty("opensearch.version", "1.0.0")
}
// This isn't applying from repositories.gradle so repeating it here
repositories {
Expand Down Expand Up @@ -60,7 +60,7 @@ ext {
}

group = "org.opensearch"
version = "${perftop_version}.0-rc1"
version = "${perftop_version}.0"

if (isLinux) {
version += "-linux-x64"
Expand Down
22 changes: 22 additions & 0 deletions release-notes/opensearch-perftop.release-notes-1.0.0.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
## Version 1.0.0.0 Release Notes

Compatible with OpenSearch 1.0.0

### Enhancements
* Add env.js to store global property ([#10](https://github.com/opensearch-project/perftop/pull/10))

### Infrastructure
* Update version to rc1 ([#10](https://github.com/opensearch-project/perftop/pull/10))
* Standardize processes across all plugins - Checklist items ([#13](https://github.com/opensearch-project/perftop/pull/13))

### Maintenance
* Upgrade the version of vulnerable dependencies ([#8](https://github.com/opensearch-project/perftop/pull/8))
* Add REST API backward compatibility ([#10](https://github.com/opensearch-project/perftop/pull/10))
* Bump glob-parent from 5.1.1 to 5.1.2 ([#12](https://github.com/opensearch-project/perftop/pull/12))
* Update OS upstream version and add release notes for 1.0.0.0 release ([#14](https://github.com/opensearch-project/perftop/pull/14))

### Documentation
* Update issue template with multiple labels([#7](https://github.com/opensearch-project/perftop/pull/7))
* Update OpenSearch documents link ([#9](https://github.com/opensearch-project/perftop/pull/9))
* Update REST endpoint in document ([#10](https://github.com/opensearch-project/perftop/pull/10))
* Add opensearch-perftop 1.0.0.0-rc1 release note ([#11](https://github.com/opensearch-project/perftop/pull/11))

0 comments on commit 290b5d0

Please sign in to comment.