Skip to content

Commit c17a79b

Browse files
committed
Version 0.4.0
1 parent 6ed72a7 commit c17a79b

File tree

7 files changed

+23
-4
lines changed

7 files changed

+23
-4
lines changed

.github/workflows/branchpush.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- 0.1.0
88
- 0.2
99
- 0.3
10+
- 0.4
1011
- ci_check
1112
jobs:
1213
build-ubuntu:

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ branches:
66
- 0.1.0
77
- 0.2
88
- 0.3
9+
- 0.4
910
- ci_check
1011
before_install:
1112
- wget -q https://download.qt.io/official_releases/qt/5.13/5.13.2/qt-opensource-windows-x86-5.13.2.exe

CHANGES.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
2020-06-30 version 0.4.0 (generator/QtProtobuf/QtGrpc)
2+
3+
QtProtobuf
4+
* Improve serializer reentrancy
5+
* Add static linking for quick plugins
6+
* Add basic tutorial
7+
* Replace qtprotobuf_link_archive with qtprotobuf_link_target
8+
* Fix static build for well-known types
9+
* Fix CPack packaging paths
10+
* Implement "invalid" fields handling in json serializer
11+
QtGrpc
12+
* Add QML gRPC API
13+
generator
14+
* Refactor generator
15+
* Implement nested types support
16+
117
2020-05-01 version 0.3.0 (generator/QtProtobuf)
218

319
QtProtobuf

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.6)
22

3-
set(QT_PROTOBUF_VERSION 0.3.0)
3+
set(QT_PROTOBUF_VERSION 0.4.0)
44
set(QT_PROTOBUF_PROJECT QtProtobufProject)
55

66
project(${QT_PROTOBUF_PROJECT} VERSION ${QT_PROTOBUF_VERSION} LANGUAGES CXX)

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ QtProtobuf provides Qt-native support of Google protocol buffers. Generated code
1313
| [0.1.0](https://github.com/semlanik/qtprotobuf/tree/0.1.0) | ![](https://github.com/semlanik/qtprotobuf/workflows/Test%20Verification/badge.svg?branch=0.1.0) | ![](https://travis-ci.com/semlanik/qtprotobuf.svg?branch=0.1.0) |
1414
| [0.2](https://github.com/semlanik/qtprotobuf/tree/0.2) | ![](https://github.com/semlanik/qtprotobuf/workflows/Test%20Verification/badge.svg?branch=0.2) | ![](https://travis-ci.com/semlanik/qtprotobuf.svg?branch=0.2) |
1515
| [0.3](https://github.com/semlanik/qtprotobuf/tree/0.3) | ![](https://github.com/semlanik/qtprotobuf/workflows/Test%20Verification/badge.svg?branch=0.3) | ![](https://travis-ci.com/semlanik/qtprotobuf.svg?branch=0.3) |
16+
| [0.4](https://github.com/semlanik/qtprotobuf/tree/0.4) | ![](https://github.com/semlanik/qtprotobuf/workflows/Test%20Verification/badge.svg?branch=0.4) | ![](https://travis-ci.com/semlanik/qtprotobuf.svg?branch=0.4) |
1617

1718

1819
# Table of contents

tests/test_grpc_qml/qml/tst_grpc.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
import QtQuick 2.12
2727
import QtTest 1.0
2828

29-
import QtProtobuf 0.3
30-
import QtGrpc 0.3
29+
import QtProtobuf 0.4
30+
import QtGrpc 0.4
3131
import qtprotobufnamespace.tests 1.0
3232

3333
TestCase {

tests/test_qml/qml/tst_simple.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import QtQuick 2.12
2727
import QtTest 1.0
2828

29-
import QtProtobuf 0.3
29+
import QtProtobuf 0.4
3030
import qtprotobufnamespace.tests 1.0
3131

3232
TestCase {

0 commit comments

Comments
 (0)