Skip to content

release: 0.12.1 #286

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

Merged
merged 3 commits into from
Feb 28, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/packing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
run: python3 .github/scripts/remove_source_code.py

- name: Install tarantool
uses: tarantool/setup-tarantool@v1
uses: tarantool/setup-tarantool@v2
with:
tarantool-version: '2.10'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/reusable_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Clone the tarantool-python connector
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: ${{ github.repository_owner }}/tarantool-python

- name: Download the tarantool build artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: ${{ inputs.artifact_name }}

Expand All @@ -29,7 +29,7 @@ jobs:
run: sudo dpkg -i tarantool*.deb

- name: Setup python3 for tests
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.7

Expand Down
30 changes: 15 additions & 15 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ jobs:

steps:
- name: Clone the connector
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install tarantool ${{ matrix.tarantool }}
uses: tarantool/setup-tarantool@v1
uses: tarantool/setup-tarantool@v2
with:
tarantool-version: ${{ matrix.tarantool }}

- name: Setup Python for tests
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

Expand Down Expand Up @@ -127,14 +127,14 @@ jobs:
- name: Clone the connector
# `ref` as merge request is needed for pull_request_target because this
# target runs in the context of the base commit of the pull request.
uses: actions/checkout@v2
uses: actions/checkout@v3
if: github.event_name == 'pull_request_target'
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge

- name: Clone the connector
if: github.event_name != 'pull_request_target'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Tarantool EE SDK
run: |
Expand All @@ -144,7 +144,7 @@ jobs:
rm -f ${ARCHIVE_NAME}

- name: Setup Python for tests
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

Expand Down Expand Up @@ -196,15 +196,15 @@ jobs:
- '3.10'
steps:
- name: Clone the connector repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install tarantool ${{ matrix.tarantool }}
uses: tarantool/setup-tarantool@v1
uses: tarantool/setup-tarantool@v2
with:
tarantool-version: ${{ matrix.tarantool }}

- name: Setup Python for tests
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

Expand Down Expand Up @@ -252,10 +252,10 @@ jobs:

steps:
- name: Clone the connector
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Python for tests
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

Expand All @@ -266,7 +266,7 @@ jobs:
run: pip3 install -r requirements-test.txt

- name: Setup WSL for tarantool
uses: Vampire/setup-wsl@v1
uses: Vampire/setup-wsl@v2
with:
distribution: Ubuntu-20.04

Expand Down Expand Up @@ -329,10 +329,10 @@ jobs:
- '3.10'
steps:
- name: Clone the connector repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Python for tests
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

Expand All @@ -346,7 +346,7 @@ jobs:
run: pip3 install -r requirements-test.txt

- name: Setup WSL for tarantool
uses: Vampire/setup-wsl@v1
uses: Vampire/setup-wsl@v2
with:
distribution: Ubuntu-20.04

Expand Down
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ Sergey Bronnikov <sergeyb@tarantool.org>
Yaroslav Lobankov <y.lobankov@tarantool.org>
Georgy Moiseev <georgy.moiseev@tarantool.org>
Oleg Jukovec <oleg.jukovec@tarantool.org>
Ilya Grishnov <ilya.grishnov@tarantool.org>
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 0.12.1 - 2023-02-28

### Changed
- Discovery iproto features only for Tarantools since version 2.10.0 (#283).
Expand Down
16 changes: 16 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
python3-tarantool (0.12.1-0) unstable; urgency=medium

## Overview

This release introduces several bugfixes and behavior improvements.

## Breaking changes

This release should not break any existing behavior.

## Bugfixes
- Discovery iproto features only for Tarantools since version 2.10.0 (#283).
- Schema fetch for spaces with foreign keys (#282).

-- Georgy Moiseev <georgy.moiseev@tarantool.org> Tue, 28 Feb 2023 10:20:48 +0300

python3-tarantool (0.12.0-0) unstable; urgency=medium

## Overview
Expand Down