Skip to content

Commit 336bac0

Browse files
Release 1.0.0
1 parent 4699fa1 commit 336bac0

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
77
and this project adheres to [Semantic Versioning](https://semver.org/).
88

99

10-
## [Unreleased]
10+
## [1.0.0]
11+
12+
First stable release.
1113

1214
- Refactor `RESULT_IF` macros so `result` doesn't have to be an lvalue.
1315
- Remove `const` qualifier so result variables can be reassigned.
@@ -64,5 +66,5 @@ Initial development release.
6466
- Macro `RESULT_DEBUG_LINE`
6567

6668

67-
[Unreleased]: https://github.com/guillermocalvo/resultlib/compare/main...develop
6869
[0.1.0]: https://github.com/guillermocalvo/resultlib/releases/tag/0.1.0
70+
[1.0.0]: https://github.com/guillermocalvo/resultlib/releases/tag/1.0.0

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.29)
33
project(resultlib C)
44

55
set(CMAKE_C_STANDARD 23)
6-
set(RESULT_VERSION "0.1")
6+
set(RESULT_VERSION "1.0")
77

88
include(FetchContent)
99
FetchContent_Declare(

clib.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "resultlib",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"description": "Elegant error handling in C",
55
"repo": "guillermocalvo/resultlib",
66
"license": "Apache-2.0",

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ AC_PREREQ([2.68])
77

88

99
# Initialize package
10-
AC_INIT([result], [0.1.0], [[email protected]], [result], [https://github.com/guillermocalvo/resultlib/])
10+
AC_INIT([result], [1.0.0], [[email protected]], [result], [https://github.com/guillermocalvo/resultlib/])
1111

1212

1313
# Information on the package

docs/Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#---------------------------------------------------------------------------
55

66
PROJECT_NAME = "Result Library"
7-
PROJECT_NUMBER = "0.1"
7+
PROJECT_NUMBER = "1.0"
88
PROJECT_BRIEF = "Elegant error handling in C"
99
PROJECT_LOGO = ./docs/logo.svg
1010
PROJECT_ICON = ./docs/icon.svg

sonar-project.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
sonar.projectKey=guillermocalvo_resultlib
22
sonar.organization=guillermocalvo
33
sonar.projectName=resultlib
4-
sonar.projectVersion=0.1.0
4+
sonar.projectVersion=1.0.0
55
sonar.description=Elegant error handling in C
66
sonar.links.homepage=https://result.guillermo.dev/
77
sonar.links.scm=https://github.com/guillermocalvo/resultlib

src/result.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* Since it's a header-only library, there is no library code to link against.
3232
*
3333
* @file result.h
34-
* @version 0.1.0
34+
* @version 1.0.0
3535
* @author [Guillermo Calvo]
3636
* @copyright Licensed under [Apache 2.0]
3737
* @see For more information, visit the [project on GitHub]
@@ -46,7 +46,7 @@
4646
/**
4747
* Returns the major version number of this library.
4848
*/
49-
#define RESULT_VERSION 0
49+
#define RESULT_VERSION 1
5050

5151
#include <stddef.h> /* NULL */
5252

0 commit comments

Comments
 (0)