Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 935ccd2

Browse files
committed
Release 0.98.0alpha
1 parent d299155 commit 935ccd2

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ No further development will be done, but bugs will be resolved, if possible.
1111
Don't patch this project downstream but use this code, so all can benefit from
1212
the changes. Pull requests are welcome, but be sure to generate no warnings.
1313

14-
Grab the 0.97.5 tarball:
15-
https://github.com/admesh/admesh/releases/download/v0.97.5/admesh-0.97.5.tar.gz
14+
Grab the 0.98.0alpha tarball:
15+
https://github.com/admesh/admesh/releases/download/v0.98.0alpha/admesh-0.98.0alpha.tar.gz
1616

1717
About ADMesh:
1818
-------------
@@ -49,10 +49,10 @@ Features:
4949
ADMesh outputs the following statistics after processing:
5050

5151
````
52-
================= Results produced by ADMesh version 0.97.5 =================
52+
=============== Results produced by ADMesh version 0.98.0alpha ===============
5353
Input file : sphere.stl
5454
File type : Binary STL file
55-
Header : Processed by ADMesh version 0.97.5
55+
Header : Processed by ADMesh version 0.98.0alpha
5656
============== Size ==============
5757
Min X = -1.334557, Max X = 1.370952
5858
Min Y = -1.377953, Max Y = 1.377230

configure.ac

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ AC_PREREQ([2.65])
66
# Version informations
77
# ====================
88
m4_define([admesh_version_major],[0])
9-
m4_define([admesh_version_minor],[97])
10-
m4_define([admesh_version_micro],[5])
11-
m4_define([admesh_version],[admesh_version_major.admesh_version_minor.admesh_version_micro])
9+
m4_define([admesh_version_minor],[98])
10+
m4_define([admesh_version_micro],[0])
11+
m4_define([admesh_version_suffix],[alpha])
12+
m4_define([admesh_version],[admesh_version_major.admesh_version_minor.admesh_version_micro''admesh_version_suffix])
1213

1314
# =============
1415
# Automake init

src/stl_io.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ stl_stats_out(stl_file *stl, FILE *file, char *input_file) {
6262
#define VERSION "unknown"
6363
#endif
6464
fprintf(file, "\n\
65-
================= Results produced by ADMesh version " VERSION " ================\n");
65+
=============== Results produced by ADMesh version " VERSION " ==============\n");
6666
fprintf(file, "\
6767
Input file : %s\n", input_file);
6868
if(stl->stats.type == binary) {

0 commit comments

Comments
 (0)