Skip to content

Commit 784680f

Browse files
committed
Version 0.3.0
1 parent 0993737 commit 784680f

File tree

6 files changed

+17
-2
lines changed

6 files changed

+17
-2
lines changed

.github/workflows/branchpush.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- master
77
- 0.1.0
88
- 0.2
9+
- 0.3
910
- ci_check
1011
jobs:
1112
build-ubuntu:

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ branches:
55
- master
66
- 0.1.0
77
- 0.2
8+
- 0.3
89
- ci_check
910
before_install:
1011
- 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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
2020-05-01 version 0.3.0 (generator/QtProtobuf)
2+
3+
QtProtobuf
4+
* Add static compilation for win32 platforms
5+
* Add rpm package distribution
6+
* Implement json serialization
7+
* Use microjson as json deserialization library
8+
QtGrpc
9+
* Add static compilation for win32 platforms
10+
generator
11+
* Fix empty message warning for copy and move operators
12+
113
2020-02-26 version 0.2.0 (generator/QtProtobuf)
214

315
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.2.0)
3+
set(QT_PROTOBUF_VERSION 0.3.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
@@ -11,6 +11,7 @@ gRPC and Protobuf generator and bindings for Qt framework
1111
| [master](https://github.com/semlanik/qtprotobuf/tree/master) | ![](https://github.com/semlanik/qtprotobuf/workflows/Test%20Verification/badge.svg?branch=master) | ![](https://travis-ci.com/semlanik/qtprotobuf.svg?branch=master) |
1212
| [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) |
1313
| [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) |
14+
| [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) |
1415

1516

1617
# Table of contents

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.2
29+
import QtProtobuf 0.3
3030
import qtprotobufnamespace.tests 1.0
3131

3232
TestCase {

0 commit comments

Comments
 (0)