diff --git a/setup.py b/setup.py index 0d9aa2237..1ed5ebcdd 100755 --- a/setup.py +++ b/setup.py @@ -624,7 +624,7 @@ def define_DSOS(self): pvxs_ver = '%(PVXS_MAJOR_VERSION)s.%(PVXS_MINOR_VERSION)s.%(PVXS_MAINTENANCE_VERSION)s'%pvxsversion -pvxs_ver += 'a1' +#pvxs_ver += 'a1' with open(os.path.join(os.path.dirname(__file__), 'README.md')) as F: long_description = F.read() diff --git a/src/pvxs/client.h b/src/pvxs/client.h index ee67e47f5..981333b39 100644 --- a/src/pvxs/client.h +++ b/src/pvxs/client.h @@ -235,14 +235,14 @@ struct PVXS_API Subscription { * false if the queue was emptied, and a further onEvent() callback may be awaited. * @throws the same exceptions as non-batch pop() * - * @since UNRELEASED Added + * @since 1.1.0 Added */ inline bool pop(std::vector& out, size_t limit=0u) { return doPop(out, limit); } #endif //! Poll statistics - //! @since UNRELEASED + //! @since 1.1.0 virtual void stats(SubscriptionStat&, bool reset = false) =0; protected: @@ -316,7 +316,7 @@ class PVXS_API Context { * Aborts/interrupts all in progress network operations. * Blocks until any in-progress callbacks have completed. * - * @since UNRELEASED + * @since 1.1.0 */ void close(); diff --git a/src/pvxs/data.h b/src/pvxs/data.h index de9cfdbf5..bf8aa4aae 100644 --- a/src/pvxs/data.h +++ b/src/pvxs/data.h @@ -428,7 +428,7 @@ class PVXS_API TypeDef * Compound type (eg. ``StructA``). However. changes between Compound * and non-Compound are not allowed. * - * @since UNRELEASED + * @since 1.1.0 */ Member as(TypeCode code, const std::string& name) const; @@ -555,7 +555,7 @@ class PVXS_API Value { * Free any allocation for array or string values, zero numeric values. * unmark() all fields. * - * @since UNRELEASED + * @since 1.1.0 */ void clear(); diff --git a/src/pvxs/source.h b/src/pvxs/source.h index 7d176d283..c70a53279 100644 --- a/src/pvxs/source.h +++ b/src/pvxs/source.h @@ -51,7 +51,7 @@ struct MonitorStat { //! serialized and in the TX buffer. size_t nQueue=0; //! Highest value of nQueue seen - //! @since UNRELEASED + //! @since 1.1.0 size_t maxQueue=0; //! Negotiated limit on nQueue size_t limitQueue=0; @@ -100,7 +100,7 @@ struct PVXS_API MonitorControlOp : public OpBase { } //! Poll information and statistics for this subscription. - //! @since UNRELEASED Added 'reset' argument. + //! @since 1.1.0 Added 'reset' argument. virtual void stats(MonitorStat&, bool reset=false) const =0; /** Set flow control levels. diff --git a/src/pvxs/util.h b/src/pvxs/util.h index c9646b325..a96feb704 100644 --- a/src/pvxs/util.h +++ b/src/pvxs/util.h @@ -97,10 +97,10 @@ std::ostream& operator<<(std::ostream&, const ServerGUID&); * * Saves existing handler, which are restored by dtor. * - * @since UNRELEASED "handler" action runs in thread context. + * @since 1.1.0 "handler" action runs in thread context. * Safe to take locks etc. * - * @until UNRELEASED handler action really runs in signal handler context. + * @until 1.1.0 handler action really runs in signal handler context. */ class PVXS_API SigInt { public: