Skip to content

Commit

Permalink
-New version 0.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gbvalor committed Dec 19, 2023
1 parent 3bdb552 commit 96d05b3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CMAKE_MINIMUM_REQUIRED (VERSION 3.5)
cmake_policy(SET CMP0048 NEW)

# Establecemos la version
project (bufr2synop LANGUAGES C VERSION 0.27.1)
project (bufr2synop LANGUAGES C VERSION 0.28.0)

#Definitions needed to generate config.h
SET(PACKAGE_NAME "${PROJECT_NAME}")
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = bufr2synop
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.27.1
PROJECT_NUMBER = 0.28.0

# 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 configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# configure.ac for bufr2synop project
#

AC_INIT([bufr2synop],[0.27.1])
AC_INIT([bufr2synop],[0.28.0])
AC_CONFIG_SRCDIR([src/apps/bufrtotac.c])
AM_INIT_AUTOMAKE

Expand Down
2 changes: 1 addition & 1 deletion src/bufrdeco/bufrdeco.h
Original file line number Diff line number Diff line change
Expand Up @@ -1208,7 +1208,7 @@ int bufrdeco_print_atom_data_stdout ( struct bufr_atom_data *a );
int bufrdeco_print_atom_data_file ( FILE *f, struct bufr_atom_data *a );
int bufrdeco_print_subset_sequence_data ( struct bufrdeco_subset_sequence_data *s );
int bufrdeco_print_subset_sequence_data_html ( struct bufrdeco_subset_sequence_data *s );
int bufrdeco_print_subset_sequence_data_tagged_html ( struct bufrdeco_subset_sequence_data *s, char *id );
int bufrdeco_print_subset_sequence_data_tagged_html ( struct bufrdeco_subset_sequence_data *s, const char *id );
int bufrdeco_fprint_subset_sequence_data_html ( FILE *f, struct bufrdeco_subset_sequence_data *s );
int bufrdeco_fprint_subset_sequence_data_tagged_html ( FILE *f, struct bufrdeco_subset_sequence_data *s, const char *id );
int bufrdeco_fprint_subset_sequence_data ( FILE *f, struct bufrdeco_subset_sequence_data *s );
Expand Down
2 changes: 1 addition & 1 deletion src/bufrdeco/bufrdeco_print_html.c
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ int bufrdeco_fprint_subset_sequence_data_tagged_html ( FILE *f, struct bufrdeco_
\param id string with id for the subset
\return If succeeded return 0
*/
int bufrdeco_print_subset_sequence_data_tagged_html ( struct bufrdeco_subset_sequence_data *s, char *id )
int bufrdeco_print_subset_sequence_data_tagged_html ( struct bufrdeco_subset_sequence_data *s, const char *id )
{
bufrdeco_assert ( s != NULL );

Expand Down

0 comments on commit 96d05b3

Please sign in to comment.