From: Uwe Hermann Date: Wed, 15 Apr 2015 22:47:21 +0000 (+0200) Subject: Set package version to 0.1.1, use "@since 0.1.1" Doxygen tags. X-Git-Tag: libserialport-0.1.1~55 X-Git-Url: https://sigrok.org/gitweb/?p=libserialport.git;a=commitdiff_plain;h=3f2f48fc0101fe11dd6b3270474c1c2c9ed21e34 Set package version to 0.1.1, use "@since 0.1.1" Doxygen tags. The next release will not contain any backwards-incompatible API or ABI changes, thus changing the package version to 0.1.1. --- diff --git a/configure.ac b/configure.ac index 6a0152f..aa55d43 100644 --- a/configure.ac +++ b/configure.ac @@ -23,8 +23,8 @@ AC_PREREQ([2.63]) # libserialport package version number (NOT the same as shared lib version!). m4_define([sp_package_version_major], [0]) -m4_define([sp_package_version_minor], [2]) -m4_define([sp_package_version_micro], [0]) +m4_define([sp_package_version_minor], [1]) +m4_define([sp_package_version_micro], [1]) m4_define([sp_package_version], [sp_package_version_major.sp_package_version_minor.sp_package_version_micro]) AC_INIT([libserialport], [sp_package_version], [martin-libserialport@earth.li], diff --git a/libserialport.h.in b/libserialport.h.in index 44c6684..88628fc 100644 --- a/libserialport.h.in +++ b/libserialport.h.in @@ -401,7 +401,7 @@ char *sp_get_port_name(const struct sp_port *port); * The description string is part of the port structure and may not be used * after the port structure has been freed. * - * @since 0.2.0 + * @since 0.1.1 */ char *sp_get_port_description(struct sp_port *port); @@ -412,7 +412,7 @@ char *sp_get_port_description(struct sp_port *port); * * @return The port transport type. * - * @since 0.2.0 + * @since 0.1.1 */ enum sp_transport sp_get_port_transport(struct sp_port *port); @@ -425,7 +425,7 @@ enum sp_transport sp_get_port_transport(struct sp_port *port); * * @return SP_OK upon success, a negative error code otherwise. * - * @since 0.2.0 + * @since 0.1.1 */ enum sp_return sp_get_port_usb_bus_address(const struct sp_port *port, int *usb_bus, int *usb_address); @@ -439,7 +439,7 @@ enum sp_return sp_get_port_usb_bus_address(const struct sp_port *port, * * @return SP_OK upon success, a negative error code otherwise. * - * @since 0.2.0 + * @since 0.1.1 */ enum sp_return sp_get_port_usb_vid_pid(const struct sp_port *port, int *usb_vid, int *usb_pid); @@ -452,7 +452,7 @@ enum sp_return sp_get_port_usb_vid_pid(const struct sp_port *port, int *usb_vid, * The manufacturer string is part of the port structure and may not be used * after the port structure has been freed. * - * @since 0.2.0 + * @since 0.1.1 */ char *sp_get_port_usb_manufacturer(const struct sp_port *port); @@ -465,7 +465,7 @@ char *sp_get_port_usb_manufacturer(const struct sp_port *port); * The product string is part of the port structure and may not be used * after the port structure has been freed. * - * @since 0.2.0 + * @since 0.1.1 */ char *sp_get_port_usb_product(const struct sp_port *port); @@ -478,7 +478,7 @@ char *sp_get_port_usb_product(const struct sp_port *port); * The serial number string is part of the port structure and may not be used * after the port structure has been freed. * - * @since 0.2.0 + * @since 0.1.1 */ char *sp_get_port_usb_serial(const struct sp_port *port); @@ -491,7 +491,7 @@ char *sp_get_port_usb_serial(const struct sp_port *port); * The MAC address string is part of the port structure and may not be used * after the port structure has been freed. * - * @since 0.2.0 + * @since 0.1.1 */ char *sp_get_port_bluetooth_address(const struct sp_port *port);