Skip to content

Commit

Permalink
Release vineyard v0.2.5.
Browse files Browse the repository at this point in the history
Signed-off-by: Tao He <[email protected]>
  • Loading branch information
sighingnow committed Jul 1, 2021
1 parent 789b19f commit 2052e5b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ If is is a **bug report**, to help us reproducing this bug, please provide infor

If it is a **feature request**, please provides a clear and concise description of what you want to happen:

1. What is the problem:
2. The behaviour that you expect to work:
### What is the problem:

### The behaviour that you expect to work:

Additional context
------------------

Add any other context about the problem here.

2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8)

set(VINEYARD_MAJOR_VERSION 0)
set(VINEYARD_MINOR_VERSION 2)
set(VINEYARD_PATCH_VERSION 4)
set(VINEYARD_PATCH_VERSION 5)
set(VINEYARD_VERSION ${VINEYARD_MAJOR_VERSION}.${VINEYARD_MINOR_VERSION}.${VINEYARD_PATCH_VERSION})

if(POLICY CMP0025)
Expand Down
4 changes: 2 additions & 2 deletions charts/vineyard/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.4
version: 0.2.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.2.4
appVersion: 0.2.5

2 changes: 1 addition & 1 deletion python/vineyard/_vineyard_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def add_doc(target, doc):
.. code:: python
>>> meta = vineyard.get_meta(hashmap_id)
>>> meta = client.get_meta(hashmap_id)
>>> meta
ObjectMeta {
"id": "0000347aebe92dd0",
Expand Down
1 change: 0 additions & 1 deletion src/server/memory/memory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ BulkStore::~BulkStore() {
object_ids.emplace_back(iter->first);
}
for (auto const& item : object_ids) {
LOG(INFO) << "deleting... " << ObjectIDToString(item) << " --- " << item;
VINEYARD_DISCARD(Delete(item));
}
}
Expand Down

0 comments on commit 2052e5b

Please sign in to comment.