Skip to content

Commit 6a8f562

Browse files
committed
Version 0.2.0
1 parent c48ec5c commit 6a8f562

File tree

7 files changed

+26
-5
lines changed

7 files changed

+26
-5
lines changed

.github/workflows/branchpush.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- master
77
- 0.1.0
8+
- 0.2
89
- ci_check
910
jobs:
1011
build-ubuntu:

.github/workflows/tagadd.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
name: Release build
22

33
on:
4-
create:
5-
tags:
6-
- v*
74
push:
85
branches:
96
- ci_check
7+
tags:
8+
- 'v*'
109
jobs:
1110
build-deb:
1211
name: Build release packages

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ branches:
44
only:
55
- master
66
- 0.1.0
7+
- 0.2
78
- ci_check
89
before_install:
910
- 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: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
2020-02-26 version 0.2.0 (generator/QtProtobuf)
2+
3+
QtProtobuf
4+
* Rename generate_qtprotobuf to qtprotobuf_generate
5+
* Migrate to new types registration approach. All protobuf types including generated might be registred by calling 'QtProtobuf::qRegisterProtobufTypes()'
6+
* Add basic qmake build procedures support
7+
* Update well-known types registration. Migrate to common types registration
8+
* Add .deb package generation based on CPack
9+
* Add static build support
10+
* Migate to options-based parameters for qtprotobuf_generate
11+
* Migrate to whole-archive linking for generated code
12+
* Supress boringssl warning when compile for windows
13+
generator
14+
* Align cmake variable names to unified style
15+
* Add folder-based generation for multi and single file generators
16+
* Add code annotations generation
17+
* Fix headers for generated enums when QML enabled
18+
119
2020-01-21 version 0.1.1 (generator/QtProtobuf/QtGrpc)
220

321
QtProtobuf

CMakeLists.txt

Lines changed: 2 additions & 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.1.1)
3+
set(QT_PROTOBUF_VERSION 0.2.0)
44
set(QT_PROTOBUF_PROJECT QtProtobufProject)
55

66
project(${QT_PROTOBUF_PROJECT} VERSION ${QT_PROTOBUF_VERSION} LANGUAGES CXX)
@@ -92,6 +92,7 @@ if(DEFINED DOXYGEN_EXECUTABLE)
9292
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/doxygen/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY)
9393
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/doxygen/customdoxygen.css ${CMAKE_CURRENT_BINARY_DIR}/customdoxygen.css COPYONLY)
9494
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/doxygen/header.html ${CMAKE_CURRENT_BINARY_DIR}/header.html COPYONLY)
95+
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/doxygen/html)
9596
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/doxygen/TitilliumWeb.woff2 ${CMAKE_CURRENT_BINARY_DIR}/doxygen/html/TitilliumWeb.woff2 COPYONLY)
9697

9798
add_custom_target(doc

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ gRPC and Protobuf generator and bindings for Qt framework
1010
| --- | --- | --- |
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) |
13+
| [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) |
1314

1415

1516
# 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.1
29+
import QtProtobuf 0.2
3030
import qtprotobufnamespace.tests 1.0
3131

3232
TestCase {

0 commit comments

Comments
 (0)