Skip to content

Commit

Permalink
Version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
semlanik committed Jun 30, 2020
1 parent 6ed72a7 commit c17a79b
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/branchpush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- 0.1.0
- 0.2
- 0.3
- 0.4
- ci_check
jobs:
build-ubuntu:
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ branches:
- 0.1.0
- 0.2
- 0.3
- 0.4
- ci_check
before_install:
- wget -q https://download.qt.io/official_releases/qt/5.13/5.13.2/qt-opensource-windows-x86-5.13.2.exe
Expand Down
16 changes: 16 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
2020-06-30 version 0.4.0 (generator/QtProtobuf/QtGrpc)

QtProtobuf
* Improve serializer reentrancy
* Add static linking for quick plugins
* Add basic tutorial
* Replace qtprotobuf_link_archive with qtprotobuf_link_target
* Fix static build for well-known types
* Fix CPack packaging paths
* Implement "invalid" fields handling in json serializer
QtGrpc
* Add QML gRPC API
generator
* Refactor generator
* Implement nested types support

2020-05-01 version 0.3.0 (generator/QtProtobuf)

QtProtobuf
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.6)

set(QT_PROTOBUF_VERSION 0.3.0)
set(QT_PROTOBUF_VERSION 0.4.0)
set(QT_PROTOBUF_PROJECT QtProtobufProject)

project(${QT_PROTOBUF_PROJECT} VERSION ${QT_PROTOBUF_VERSION} LANGUAGES CXX)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ QtProtobuf provides Qt-native support of Google protocol buffers. Generated code
| [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) |
| [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) |
| [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) |
| [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) |


# Table of contents
Expand Down
4 changes: 2 additions & 2 deletions tests/test_grpc_qml/qml/tst_grpc.qml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
import QtQuick 2.12
import QtTest 1.0

import QtProtobuf 0.3
import QtGrpc 0.3
import QtProtobuf 0.4
import QtGrpc 0.4
import qtprotobufnamespace.tests 1.0

TestCase {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_qml/qml/tst_simple.qml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import QtQuick 2.12
import QtTest 1.0

import QtProtobuf 0.3
import QtProtobuf 0.4
import qtprotobufnamespace.tests 1.0

TestCase {
Expand Down

0 comments on commit c17a79b

Please sign in to comment.