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

Skip to content

Commit ddbb223

Browse files
committed
Release 0.98.0
1 parent 5bea901 commit ddbb223

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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.98.0rc1 tarball:
15-
https://github.com/admesh/admesh/releases/download/v0.98.0rc1/admesh-0.98.0rc1.tar.gz
14+
Grab the 0.98.0 tarball:
15+
https://github.com/admesh/admesh/releases/download/v0.98.0/admesh-0.98.0.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.98.0rc1 ===============
52+
================= Results produced by ADMesh version 0.98.0 =================
5353
Input file : sphere.stl
5454
File type : Binary STL file
55-
Header : Processed by ADMesh version 0.98.0rc1
55+
Header : Processed by ADMesh version 0.98.0
5656
============== Size ==============
5757
Min X = -1.334557, Max X = 1.370952
5858
Min Y = -1.377953, Max Y = 1.377230

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ AC_PREREQ([2.65])
88
m4_define([admesh_version_major],[0])
99
m4_define([admesh_version_minor],[98])
1010
m4_define([admesh_version_micro],[0])
11-
m4_define([admesh_version_suffix],[rc1])
11+
m4_define([admesh_version_suffix],[])
1212
m4_define([admesh_version],[admesh_version_major.admesh_version_minor.admesh_version_micro''admesh_version_suffix])
1313

1414
# =============

src/stl_io.c

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

0 commit comments

Comments
 (0)