When deciding on your app’s version number, consider the current state of development.
0.x.x is typically used for early development phases, indicating the app is functional but still in progress and less stable.
1.x.x suggests a complete and stable release as of now, but it doesn’t mean no new features will be added in the future.
0.1.0 would be suitable if your app is usable and functional but still in an early stage with ongoing feature development. This signals to users that the app is evolving and may still have some rough edges.
Post
Replies
Boosts
Views
Activity
Hi, I am looking to add the ability to receive and send data to a WebTransport server via my IOS app. Im not sure if that's natively supported by the existing HTTP/3 integration or requires additional third-party integration?
Pretty much WebSockets but based on Quic...
My existing app used Socket.io but I experienced a lot of TCP related issues and I am looking for a better solution maybe using HTTP/3 (WebTransport) which is based on UDP to mitigate issues like high-latency, head of the line blocking, etc.