Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bump to v0.42.0 to start release process #3509

Merged
merged 5 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
168 changes: 168 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ homepage = "https://opendal.apache.org/"
license = "Apache-2.0"
repository = "https://github.com/apache/incubator-opendal"
rust-version = "1.67"
version = "0.41.0"
version = "0.42.0"

[workspace.dependencies]
opendal = { version = "0.41", path = "core" }
opendal = { version = "0.42", path = "core" }

[profile.bench]
debug = true
2 changes: 1 addition & 1 deletion bindings/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.

cmake_minimum_required(VERSION 3.10)
project(opendal-cpp VERSION 0.41.0 LANGUAGES CXX)
project(opendal-cpp VERSION 0.42.0 LANGUAGES CXX)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
2 changes: 1 addition & 1 deletion bindings/haskell/opendal.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ source-repository head
source-repository this
type: git
location: https://github.com/apache/incubator-opendal
tag: v0.40.0
tag: v0.42.0
subdir: bindings/haskell

common base
Expand Down
2 changes: 1 addition & 1 deletion bindings/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<groupId>org.apache.opendal</groupId>
<artifactId>opendal-java</artifactId>
<version>0.41.0</version>
<version>0.42.0</version>

<url>https://opendal.apache.org</url>
<mailingLists>
Expand Down
2 changes: 1 addition & 1 deletion bindings/nodejs/npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@opendal/lib-darwin-arm64",
"repository": "[email protected]/apache/incubator-opendal.git",
"version": "0.41.0",
"version": "0.42.0",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion bindings/nodejs/npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@opendal/lib-darwin-x64",
"repository": "[email protected]/apache/incubator-opendal.git",
"version": "0.41.0",
"version": "0.42.0",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion bindings/nodejs/npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opendal/lib-linux-x64-gnu",
"version": "0.41.0",
"version": "0.42.0",
"repository": "[email protected]/apache/incubator-opendal.git",
"os": [
"linux"
Expand Down
2 changes: 1 addition & 1 deletion bindings/nodejs/npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opendal/lib-win32-x64-msvc",
"version": "0.41.0",
"version": "0.42.0",
"repository": "[email protected]/apache/incubator-opendal.git",
"os": [
"win32"
Expand Down
2 changes: 1 addition & 1 deletion bindings/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "opendal",
"author": "OpenDAL Contributors <[email protected]>",
"version": "0.41.0",
"version": "0.42.0",
"license": "Apache-2.0",
"main": "index.js",
"types": "index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/upgrade.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Unreleased
# Upgrade to v0.42

## Breaking change for layers

Expand Down
2 changes: 1 addition & 1 deletion core/src/docs/upgrade.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Unreleased
# Upgrade to v0.42

## Public API

Expand Down
4 changes: 2 additions & 2 deletions website/community/committers/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ This is a call for a discussion to release Apache OpenDAL(incubating) version ${

The change lists about this release:

https://github.com/apache/incubator-opendal/compare/v0.39.0...main
https://github.com/apache/incubator-opendal/compare/v${opendal_last_version}...main

Please leave your comments here about this release plan. We will bump the version in the repo and start the release process after the discussion.

Expand All @@ -74,7 +74,7 @@ Start a tracking issue on GitHub for the upcoming release to track all tasks tha
Title:

```
Tracking issuses of OpenDAL ${opendal_version} Release
Tracking issues of OpenDAL ${opendal_version} Release
```

Content:
Expand Down
Loading