diff --git a/_service b/_service
index 387bf1b..7402786 100644
--- a/_service
+++ b/_service
@@ -1,17 +1,15 @@
-
+
git
git://linuxtv.org/libcamera
- refs/tags/v0.0.4
+ refs/tags/v0.1.0
@PARENT_TAG@
v([0-9\.]*)
- enable
-
-
+
*.tar
xz
-
+
diff --git a/_servicedata b/_servicedata
deleted file mode 100644
index a99c0b8..0000000
--- a/_servicedata
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- git://linuxtv.org/libcamera
- 6cf637eb253a68edebe59505bea55435fafb00cd
diff --git a/baselibs.conf b/baselibs.conf
index 4146833..d9011e9 100644
--- a/baselibs.conf
+++ b/baselibs.conf
@@ -1,2 +1,2 @@
-libcamera0_0_4
-libcamera-base0_0_4
+libcamera0_1
+libcamera-base0_1
diff --git a/libcamera-0.0.4.obscpio b/libcamera-0.0.4.obscpio
deleted file mode 100644
index 77ec68f..0000000
--- a/libcamera-0.0.4.obscpio
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:69a9bc4e24666fca0e5a408f68e1d57a09a3711529b38d29591d4a28bbcbba4f
-size 5986317
diff --git a/libcamera-0.1.0.tar.xz b/libcamera-0.1.0.tar.xz
new file mode 100644
index 0000000..2524ac0
--- /dev/null
+++ b/libcamera-0.1.0.tar.xz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7d5dd3513704e2c7b9e95423b6df1d0cd06f8c5db3635b35a0cb69994703f0c6
+size 1016288
diff --git a/libcamera.changes b/libcamera.changes
index 9952b1c..37f69df 100644
--- a/libcamera.changes
+++ b/libcamera.changes
@@ -1,3 +1,14 @@
+-------------------------------------------------------------------
+Fri Sep 01 07:00:58 UTC 2023 - rfrohl@suse.com
+
+- Update to version 0.1.0:
+ * v4l2: Use SystemDevices properties to identify cameras
+ * apps: Add ipa-verify application
+ * libcamera: formats: Add 14-bits Bayer RAW formats
+ * libcamera: v4l2_device: openat(2) with O_CLOEXEC to cleanup
+ after exec(3)
+- Drop silent-Werror_dangling-reference.patch: fixed upstream
+
-------------------------------------------------------------------
Mon Mar 13 08:48:30 UTC 2023 - Martin Liška
diff --git a/libcamera.obsinfo b/libcamera.obsinfo
deleted file mode 100644
index bc59c3a..0000000
--- a/libcamera.obsinfo
+++ /dev/null
@@ -1,4 +0,0 @@
-name: libcamera
-version: 0.0.4
-mtime: 1675212256
-commit: 6cf637eb253a68edebe59505bea55435fafb00cd
diff --git a/libcamera.spec b/libcamera.spec
index a975a88..a7147c1 100644
--- a/libcamera.spec
+++ b/libcamera.spec
@@ -16,10 +16,10 @@
#
-%define lname libcamera0_0_4
-%define lname_base libcamera-base0_0_4
+%define lname libcamera0_1
+%define lname_base libcamera-base0_1
Name: libcamera
-Version: 0.0.4
+Version: 0.1.0
Release: 0
Summary: A complex camera support library in C++
License: GPL-2.0-or-later AND LGPL-2.1-or-later
@@ -28,7 +28,6 @@ URL: http://libcamera.org/
Source: %name-%version.tar.xz
Source1: baselibs.conf
-Patch0: silent-Werror_dangling-reference.patch
BuildRequires: boost-devel
BuildRequires: c++_compiler
diff --git a/silent-Werror_dangling-reference.patch b/silent-Werror_dangling-reference.patch
deleted file mode 100644
index 9785ce9..0000000
--- a/silent-Werror_dangling-reference.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/src/apps/cam/file_sink.cpp b/src/apps/cam/file_sink.cpp
-index b32aad24..9a543dc1 100644
---- a/src/apps/cam/file_sink.cpp
-+++ b/src/apps/cam/file_sink.cpp
-@@ -114,7 +114,16 @@ void FileSink::writeBuffer(const Stream *stream, FrameBuffer *buffer,
- }
-
- for (unsigned int i = 0; i < buffer->planes().size(); ++i) {
-+
-+#if __GNUC__ >= 13
-+#pragma GCC diagnostic push
-+#pragma GCC diagnostic ignored "-Wdangling-reference"
-+#endif
-+
- const FrameMetadata::Plane &meta = buffer->metadata().planes()[i];
-+#if __GNUC__ >= 13
-+#pragma GCC diagnostic pop
-+#endif
-
- Span data = image->data(i);
- unsigned int length = std::min(meta.bytesused, data.size());