Skip to content

Commit 48d7fd6

Browse files
committed
Updates version info and documentation for release
1 parent 6fbcbc1 commit 48d7fd6

File tree

13 files changed

+300
-248
lines changed

13 files changed

+300
-248
lines changed

BUILDING

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Notes
66
* Currently Apache Celix only builds and works on Unix/Linux like systems
77
(including MacOSX).
88
* Apache Celix requires CMake for building, other requirements/dependencies are
9-
listed per subproject on http://celix.apache.org/subprojects.html
9+
listed in the building documentation (documents/building/README.md)
1010
* More information about the build system, and how to extend it, can be found at
1111
the website: http://celix.apache.org/documentation.html
1212

CHANGES.md

Lines changed: 247 additions & 223 deletions
Large diffs are not rendered by default.

Doxyfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
118
# Doxyfile 1.8.11
219

320
# This file describes the settings to be used by the documentation system

RELEASE_NOTES

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,32 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
# Release Notes for Apache Celix 2.1.0
16+
# Release Notes for Apache Celix 2.2.0
17+
18+
## Known shortcomings:
19+
20+
- Uninstall of bundle is not working correctly.
21+
- Importing and exported of bundle libraries is not working correctly.
1722

1823
## Versions
1924

2025
### Libraries:
21-
- Celix Framework library: 2.1.0
22-
- Celix Utils library: 2.1.0
23-
- Dependency Manager:
24-
- C : 1.1.0
25-
- C++ : 2.0.0
26-
- Celix DFI library: 1.1.0
27-
- Celix etcdlib: 1.0.0
26+
- Celix Framework library: 2.2.0
27+
- Celix Utils library: 2.2.0
28+
- Celix DFI library: 1.2.0
29+
- Celix etcdlib: 1.1.0
2830

2931
### Bundles
3032
- Shell Tui: 1.1.0
3133
- Shell Bonjour: 0.1.0
3234
- Shell: 2.1.0
3335
- Remote Shell: 0.0.2
34-
- Log Writer: 1.1.0
35-
- Log Service: 1.1.0
36+
- Log Writer: 1.2.0
37+
- Log Service: 1.2.0
3638
- Event Admin: 0.0.0
3739
- Device Access: 0.0.2
3840
- Deployment Admin: 0.0.2
3941
- Config Admin: 0.0.1
40-
- Dm Shell Bundle: 1.0.0
4142
- Remote Services
4243
- Remote Service Admin Dfi: 0.9.0
4344
- Remote Service Admin HTTP: 0.9.0
@@ -47,7 +48,10 @@
4748
- Configured Discovery: 0.9.0
4849
- PubSub
4950
- PubSubAdmin UDP Multicast : 1.0.0
50-
- PubSubAdmin ZMQ : 1.0.0
51-
- PubSub ETCD Discovery: 1.0.0
52-
- PubSub Topology Manager: 1.0.0
53-
- PubSub JSON Serializer : 1.0.0
51+
- PubSubAdmin ZMQ : 1.1.0
52+
- PubSub ETCD Discovery: 1.1.0
53+
- PubSub Topology Manager: 1.1.0
54+
- PubSub JSON Serializer : 1.1.0
55+
- PubSub Avrobin Serializer : 1.0.0
56+
- PubSub Websocket: 1.0.0
57+
- PubSub TCP: 1.0.0

bundles/logging/log_writer/log_writer_stdout/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
add_celix_bundle(log_writer_stdout
1919
SYMBOLIC_NAME "apache_celix_log_writer"
20-
VERSION "1.1.0"
20+
VERSION "1.2.0"
2121
NAME "Apache Celix Log Writer"
2222
GROUP "Celix/Logging"
2323
SOURCES

bundles/logging/log_writer/log_writer_syslog/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if (LOG_WRITER_SYSLOG)
1919
find_package(Syslog REQUIRED)
2020

2121
add_celix_bundle(log_writer_syslog
22-
VERSION 1.1.0
22+
VERSION 1.2.0
2323
SYMBOLIC_NAME "apache_celix_log_writer_syslog"
2424
NAME "Apache Celix Log Writer Syslog"
2525
GROUP "Celix/Logging"

bundles/pubsub/pubsub_admin_zmq/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ if (BUILD_PUBSUB_PSA_ZMQ)
3535

3636
add_celix_bundle(celix_pubsub_admin_zmq
3737
BUNDLE_SYMBOLICNAME "apache_celix_pubsub_admin_zmq"
38-
VERSION "1.0.0"
38+
VERSION "1.1.0"
3939
GROUP "Celix/PubSub"
4040
SOURCES
4141
src/psa_activator.c

bundles/pubsub/pubsub_discovery/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ find_package(Jansson REQUIRED)
2020

2121
add_celix_bundle(celix_pubsub_discovery_etcd
2222
BUNDLE_SYMBOLICNAME "apache_celix_pubsub_discovery_etcd"
23-
VERSION "1.0.0"
23+
VERSION "1.1.0"
2424
GROUP "Celix/PubSub"
2525
SOURCES
2626
src/psd_activator.c

bundles/pubsub/pubsub_serializer_avrobin/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ find_package(Jansson REQUIRED)
1919

2020
add_celix_bundle(celix_pubsub_serializer_avrobin
2121
BUNDLE_SYMBOLICNAME "apache_celix_pubsub_serializer_avrobin"
22-
VERSION "1.0.0"
22+
VERSION "1.1.0"
2323
GROUP "Celix/PubSub"
2424
SOURCES
2525
src/ps_avrobin_serializer_activator.c

bundles/pubsub/pubsub_serializer_json/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ find_package(Jansson REQUIRED)
2020

2121
add_celix_bundle(celix_pubsub_serializer_json
2222
BUNDLE_SYMBOLICNAME "apache_celix_pubsub_serializer_json"
23-
VERSION "1.0.0"
23+
VERSION "1.1.0"
2424
GROUP "Celix/PubSub"
2525
SOURCES
2626
src/ps_json_serializer_activator.c

0 commit comments

Comments
 (0)