Skip to content

Commit

Permalink
bump release version up to 2.3.0
Browse files Browse the repository at this point in the history
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
  • Loading branch information
takaswie committed Aug 29, 2021
1 parent 18d81c6 commit 25f5ece
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
11 changes: 6 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
libhinawa
=========

2021/05/28
2021/08/29
Takashi Sakamoto

Instruction
Expand Down Expand Up @@ -50,12 +50,13 @@ Example of Python3 with PyGobject
addr = 0xfffff0000904
req = Hinawa.FwReq()
frame = bytearray(4)
frame = req.transaction(node, Hinawa.FwTcode.READ_QUADLET_REQUEST, addr, 4,
frame)
frame = req.transaction_sync(node, Hinawa.FwTcode.READ_QUADLET_REQUEST, addr, 4,
frame, 50)
for i, frame in enumerate(frame):
print('0x{:016x}: 0x{:02x}'.format(addr + i, frame))

dispatcher.quit()
dispatcher_th.join()

License
=======
Expand Down Expand Up @@ -143,14 +144,14 @@ How to make RPM package
$ cd build
$ meson dist
...
meson-dist/libhinawa-2.2.1.tar.xz 433b4fbf1a3f7a4af3a0cc0103c6127b749c59717f72ab2c22c5db763d878a83
meson-dist/libhinawa-2.3.0.tar.xz 3bc5833e102f38d3b08de89e6355deb83dffb81fb6cc34fc7f2fc473be5b4c47
$ cd ..

3. copy the archive

::

$ cp build/meson-dist/libhinawa-2.2.1.tar.xz ~/rpmbuild/SOURCES/
$ cp build/meson-dist/libhinawa-2.3.0.tar.xz ~/rpmbuild/SOURCES/

4. build package

Expand Down
5 changes: 4 additions & 1 deletion libhinawa.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global glib2_version 2.34.0

Name: libhinawa
Version: 2.2.1
Version: 2.3.0
Release: 1%{?dist}
Summary: GObject introspection library for devices connected to IEEE 1394 bus

Expand Down Expand Up @@ -71,6 +71,9 @@ developing applications that use %{name}.
%{_datadir}/gtk-doc/html/hinawa/*

%changelog
* Sun Aug 29 2021 Takashi Sakamoto <o-takashi@sakamocchi.jp> - 2.3.0
- new upstream release.

* Fri May 28 2021 Takashi Sakamoto <o-takashi@sakamocchi.jp> - 2.2.1
- new upstream release.

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('libhinawa', 'c',
version: '2.2.1',
version: '2.3.0',
license: 'LGPL-2.1+',
meson_version: '>= 0.46.0',
)
Expand Down

0 comments on commit 25f5ece

Please sign in to comment.