Skip to content

Commit

Permalink
- Include stddef in AbstractList
Browse files Browse the repository at this point in the history
- Bump version to 3.0.1
  • Loading branch information
nkaaf committed Feb 29, 2024
1 parent 638a66a commit 3f6dccf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Arduino List Library"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 3.0.0
PROJECT_NUMBER = 3.0.1

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
"name": "List",
"version": "3.0.0",
"version": "3.0.1",
"description": "The Ultimate Collection of Lists. This library extends the Arduino ecosystem with the functionality of several easy-to-use lists for numerous purposes.",
"keywords": [
"arduino",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=List
version=3.0.0
version=3.0.1
author=Niklas Kaaf <[email protected]>
maintainer=Niklas Kaaf <[email protected]>
sentence=The Ultimate Collection of Lists
Expand Down
4 changes: 3 additions & 1 deletion src/AbstractList.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* easy-to-use list implementations. They are specially designed and optimized
* for different purposes.
*
* Copyright (C) 2021-2023 Niklas Kaaf
* Copyright (C) 2021-2024 Niklas Kaaf
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Expand All @@ -26,6 +26,8 @@
#ifndef LIST_ABSTRACT_LIST_HPP
#define LIST_ABSTRACT_LIST_HPP

#include <stddef.h>

/*!
* @brief Abstract class from which all lists can be derived.
*
Expand Down

0 comments on commit 3f6dccf

Please sign in to comment.