Skip to content

Commit 3cdfd85

Browse files
committed
typo fix in comment
1 parent c9bb008 commit 3cdfd85

File tree

12 files changed

+23
-14
lines changed

12 files changed

+23
-14
lines changed

.mulle/share/env/environment-plugin.sh

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.mulle/share/env/version

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.mulle/share/sde/version/mulle-sde/cmake

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required( VERSION 3.14)
22

3-
project( mulle-buffer VERSION 4.0.0 LANGUAGES C)
3+
project( mulle-buffer VERSION 4.0.1 LANGUAGES C)
44

55

66
### mulle-sde environment

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ having to worry about memory management.
1616

1717
| Release Version | Release Notes
1818
|-------------------------------------------------------|--------------
19-
| ![Mulle kybernetiK tag](https://img.shields.io/github/tag/mulle-c/mulle-buffer.svg?branch=master) [![Build Status](https://github.com/mulle-c/mulle-buffer/workflows/CI/badge.svg?branch=master)](//github.com/mulle-c/mulle-buffer/actions) ![Coverage](https://img.shields.io/badge/coverage-95%25%C2%A0-seagreen) | [RELEASENOTES](RELEASENOTES.md) |
19+
| ![Mulle kybernetiK tag](https://img.shields.io/github/tag/mulle-c/mulle-buffer.svg) [![Build Status](https://github.com/mulle-c/mulle-buffer/workflows/CI/badge.svg)](//github.com/mulle-c/mulle-buffer/actions) ![Coverage](https://img.shields.io/badge/coverage-95%25%C2%A0-seagreen) | [RELEASENOTES](RELEASENOTES.md) |
2020

2121

2222
## API

RELEASENOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 4.0.1
2+
3+
Various small improvements
4+
15
# 4.0.0
26

37

clib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "mulle-buffer",
3-
"version" : "4.0.0",
3+
"version" : "4.0.1",
44
"description" : "↗️ A growable C char array and also a stream",
55
"keywords" : [],
66
"license" : "BSD-3-Clause",

cmake/share/InstallRpath.cmake

Lines changed: 9 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/mulle-buffer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
#ifndef mulle_buffer_h__
4040
#define mulle_buffer_h__
4141

42-
#define MULLE__BUFFER_VERSION ((4UL << 20) | (0 << 8) | 0)
42+
#define MULLE__BUFFER_VERSION ((4UL << 20) | (0 << 8) | 1)
4343

4444
#include "include.h"
4545
#include "mulle--buffer.h"

src/mulle-flushablebuffer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
#include "mulle-buffer.h"
4040

4141

42-
// TODO: if we also defined a mulle_flushablebuffer_sucket_t we could
42+
// TODO: if we also defined a mulle_flushablebuffer_sucker_t we could
4343
// also wedge fread (and possibly also fseek) into this datastructure.
4444
// Then we could wrap FILE into mulle_buffer and use this to
4545
// do file I/O. This would be nice for callbacks (like in mulle-utf)

0 commit comments

Comments
 (0)