Skip to content

Commit 2d0e11e

Browse files
committed
release v0.1.2
1 parent 37381f7 commit 2d0e11e

20 files changed

Lines changed: 40 additions & 40 deletions

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
lsqb-benchmark:
2727
runs-on: ubuntu-22.04
2828
container:
29-
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.1
29+
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.2
3030
# options: --user root
3131
steps:
3232
- name: checkout

.github/workflows/build-extensions.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ on:
88
required: false
99
default: 'parquet;httpfs'
1010
version:
11-
description: 'Version tag for the extensions (e.g., 0.1.1)'
11+
description: 'Version tag for the extensions (e.g., 0.1.2)'
1212
required: false
13-
default: '0.1.1'
13+
default: '0.1.2'
1414
push:
1515
branches:
1616
- main
@@ -64,8 +64,8 @@ jobs:
6464
elif [ -n "${{ github.ref }}" ] && [[ "${{ github.ref }}" == refs/tags/* ]]; then
6565
VERSION="${GITHUB_REF#refs/tags/}"
6666
else
67-
# Default to 0.1.1 if no version is specified
68-
VERSION="0.1.1"
67+
# Default to 0.1.2 if no version is specified
68+
VERSION="0.1.2"
6969
fi
7070
echo "version=$VERSION" >> $GITHUB_OUTPUT
7171
echo "Version: $VERSION"
@@ -76,7 +76,7 @@ jobs:
7676
if: github.event_name == 'workflow_dispatch' || startsWith(github.ref, 'refs/tags/')
7777
runs-on: [self-hosted, daily, X64]
7878
container:
79-
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-manylinux:v0.1.1-x86_64
79+
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-manylinux:v0.1.2-x86_64
8080
steps:
8181
- name: checkout
8282
uses: actions/checkout@v4
@@ -159,7 +159,7 @@ jobs:
159159
if: github.event_name == 'workflow_dispatch' || startsWith(github.ref, 'refs/tags/')
160160
runs-on: [self-hosted, daily, ARM64]
161161
container:
162-
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-manylinux:v0.1.1-arm64
162+
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-manylinux:v0.1.2-arm64
163163
steps:
164164
- name: checkout
165165
uses: actions/checkout@v4

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
docs:
1818
runs-on: [ubuntu-22.04]
1919
container:
20-
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.1
20+
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.2
2121
# options: --user root
2222

2323
steps:

.github/workflows/neug-extension-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
extension_tests_default:
2828
runs-on: [self-hosted, daily, linux]
2929
container:
30-
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.1
30+
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.2
3131
steps:
3232
- name: checkout
3333
uses: actions/checkout@v4
@@ -71,7 +71,7 @@ jobs:
7171
with:
7272
python-version: '3.13'
7373

74-
# TODO: After unifying wheel build (neug-manylinux:v0.1.1-x86_64) and dev images (neug-dev:v0.1.1),
74+
# TODO: After unifying wheel build (neug-manylinux:v0.1.2-x86_64) and dev images (neug-dev:v0.1.2),
7575
# skip the build process and use `pip3 install neug` to test the locally built json extension
7676
# with the released wheel package.
7777
- name: Build NeuG with extensions

.github/workflows/neug-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
runner: ${{ github.repository == 'alibaba/neug' && fromJSON('["self-hosted", "daily", "linux", "arm64"]') || 'ubuntu-22.04-arm' }}
6363
runs-on: ${{ matrix.runner }}
6464
container:
65-
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.1
65+
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.2
6666
steps:
6767
- name: checkout
6868
id: checkout

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ We welcome contributions from the community! 🎉
1414

1515
```bash
1616
# Using Docker (recommended)
17-
docker pull neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.1
18-
docker run -it --name neug-dev neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.1 bash
17+
docker pull neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.2
18+
docker run -it --name neug-dev neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.2 bash
1919
source ~/.neug_env && make python-dev
2020
```
2121

NEUG_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.1
1+
0.1.2

dev_and_test.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ When running python test, set environment variable `DEBUG` to `ON`, to display a
185185

186186
## Dev images
187187

188-
- neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.1-x86_64: dev container built upload ubuntu for x86_64
189-
- neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.1-arm64: dev container built upload ubuntu for amr64
188+
- neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.2-x86_64: dev container built upload ubuntu for x86_64
189+
- neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.2-arm64: dev container built upload ubuntu for amr64
190190

191191
## Alter property on edge
192192
1. Alter property on edge with single property

doc/source/extensions/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The following extensions are currently supported or planned to be supported in N
1313
| Category | Extension | Description | Since Version |
1414
| --------------- | ----------------------------- | ------------------------------------------------------------------------ | ------------- |
1515
| Data Source | [JSON](load_json.md) | Import & export data from JSON file format | v0.1 |
16-
| Data Source | [PARQUET](load_parquet.md) | Import & Export data from PARQUET format files | v0.1.1 |
16+
| Data Source | [PARQUET](load_parquet.md) | Import & Export data from PARQUET format files | v0.1.2 |
1717
| File System | [HTTP/HTTPS/S3/OSS](load_httpfs.md) | Provide data source based on HTTP/HTTPS/S3/OSS protocol | v0.2 |
1818
| Graph Algorithm | K-Core | Find all subgraphs with core number ≥ k. Returns`(node, core_number)` | planned v0.2 |
1919
| Graph Algorithm | PageRank | Calculate node importance scores. Returns`(node, rank)` | planned v0.2 |

docker/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ To access NeuG images, you can pull them from the specified registry using the c
66

77
```bash
88
# Pulling images for different architectures
9-
docker pull neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-manylinux:v0.1.1-x86_64
10-
docker pull neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-manylinux:v0.1.1-arm64
9+
docker pull neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-manylinux:v0.1.2-x86_64
10+
docker pull neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-manylinux:v0.1.2-arm64
1111

1212
# Development images
13-
docker pull neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.1-x86_64
14-
docker pull neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.1-arm64
13+
docker pull neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.2-x86_64
14+
docker pull neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.2-arm64
1515
```
1616

1717
## Building Manylinux Images
@@ -26,7 +26,7 @@ And tag the images to the desired registry
2626

2727
```bash
2828
export ARCH=arm64 # x86_64
29-
docker tag graphscope/neug-manylinux:${ARCH} neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-manylinux:v0.1.1-${ARCH}
29+
docker tag graphscope/neug-manylinux:${ARCH} neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-manylinux:v0.1.2-${ARCH}
3030
```
3131

3232
## Developing Development Images
@@ -42,9 +42,9 @@ make neug-dev # Build the image suitable for development
4242
Since Docker images are architecture-specific, you can create a manifest to enable users to pull the same image name across different platforms. This process is scripted in `manifest.sh`.
4343

4444
```bash
45-
bash ./manifest.sh neug-manylinux v0.1.1 hongkong create
46-
bash ./manifest.sh neug v0.1.1 hongkong create
47-
bash ./manifest.sh neug-dev v0.1.1 hongkong create
45+
bash ./manifest.sh neug-manylinux v0.1.2 hongkong create
46+
bash ./manifest.sh neug v0.1.2 hongkong create
47+
bash ./manifest.sh neug-dev v0.1.2 hongkong create
4848
```
4949

5050
Ensure images are pushed to the registry before executing the manifest creation.

0 commit comments

Comments
 (0)