Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavidsaver committed Nov 28, 2022
1 parent 8972e93 commit af20a88
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
6 changes: 3 additions & 3 deletions src/pvxs/client.h
Original file line number Diff line number Diff line change
Expand Up @@ -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<Value>& 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:
Expand Down Expand Up @@ -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();

Expand Down
4 changes: 2 additions & 2 deletions src/pvxs/data.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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();

Expand Down
4 changes: 2 additions & 2 deletions src/pvxs/source.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions src/pvxs/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit af20a88

Please sign in to comment.