version bump

pollfd
Karchnu 2020-07-12 22:00:18 +02:00
parent 045b1433f5
commit 282cc59c18
2 changed files with 10 additions and 5 deletions

View File

@ -17,20 +17,25 @@ The log file can be indicated with the `IPC_LOGFILE` environment variable, too.
To remove logs: `make LDFLAGS=-DIPC_WITHOUT_ERRORS`
# Planning for 0.7
# Since 0.7
- `libipc` should have callbacks to use along with switching capabilities, making easier to implement proxies with communication protocols
- `libipc` have callbacks to use along with switching capabilities, making easier to implement proxies for different communication protocols
# Planning for 0.8
- `libipc` should be thread-safe
For performance improvements within `libipc`:
# Planning for 0.8
- `libipc` shouldn't use realloc for each event (new client, new message, etc.) but by batch of a few thousand elements
- `libipc` should use better internal structures, unrequiring the use of loops (over the whole list of messages or connections) for each action
# Planning for 0.9
- `libipc` should use `libevent` for performance improvments
- `libipc` should be thread-safe
# Planning for 1.0
- `libipc` *may* be written in Zig
- `libipc` should have usable bindings in several languages

View File

@ -1,6 +1,6 @@
package=libipc # Package name.
version=0.6.0 # Package version.
version=0.7.0 # Package version.
# Our targets are the library and its documentation.
targets=(libipc man/libipc.7)