Skip to content

Commit 7409340

Browse files
committed
Release 0.5
1 parent 7a51dcf commit 7409340

File tree

17 files changed

+46
-29
lines changed

17 files changed

+46
-29
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.4.{build}
1+
version: 0.5.{build}
22
max_jobs: 4
33
environment:
44
matrix:

ChangeLog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
Full history from the git log
22
-----------------------------
3+
2018-07-05 Reini Urban <[email protected]>
4+
5+
First release 0.5
6+
7+
2018-07-04 Reini Urban <[email protected]>
8+
9+
logging: remove decimal handle value
10+
handles are hex only
11+
12+
2018-07-03 Reini Urban <[email protected]>
13+
14+
dxf: protect empty vectors
15+
and fix wrong MATERIAL text types for *map_filename
16+
17+
api: remove wrong comment
18+
MULTILEADER spec: more DXF
19+
and return earlier on errors
320

421
2018-06-30 Reini Urban <[email protected]>
522

NEWS

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ GNU LibreDWG NEWS -- history of user-visible changes.
22
Copyright (C) 2018 Free Software Foundation, Inc.
33
See the end for copying conditions.
44

5-
LibreDWG version 0.4.924 - released 2018/06/28:
5+
LibreDWG version 0.5 - released 2018/07/05:
66

7-
This is the second test release towards 0.5.
7+
This is the first public release ever, after several years of silence.
88
It can read most r13-r2018 DWG files, and write r2000 DWG,
99
write DXF and GeoJSON files for all versions.
1010
There are also many new programs: dwgread, dwgwrite, dwgrewrite,
1111
dwg2dxf, dwglayers, dwggrep, dwgbmp, dwg2SVG (very basic), dwg2ps (infancy).
1212
See the manual, ChangeLog or git history for details.
1313

14-
+The API is usable but still pretty rough, we might still rename +some
15-
functions or names for better consistency and add more encoding API.
14+
The API is usable but still pretty rough, we might still rename
15+
some functions or names for better consistency and add more encoding API.
1616

1717
Copyright information:
1818

README-alpha

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ With unknown objects and unsupported versions it might crash,
55
future releases will rather abort on unsupported DWG versions.
66

77
The API is usable but still pretty rough, we might still rename
8-
some functions or better consistency and add more encoding API.
8+
some functions or names for better consistency and add more encoding API.
99

1010
Please see the file README for more information.

bindings/perl/Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ $lddlflags .= " -lredwg";
2626

2727
WriteMakefile (
2828
NAME => 'LibreDWG',
29-
VERSION => '0.4_938',
29+
VERSION => '0.5',
3030
($ccopts ? (CCFLAGS => $ccopts) : ()),
3131
($ldopts ? (LDFLAGS => $ldopts) : ()),
3232
($lddlflags ? (LDDLFLAGS => $lddlflags) : ()),

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dnl You should have received a copy of the GNU General Public License
99
dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
1010

1111
AC_PREREQ([2.61])
12-
AC_INIT([LibreDWG],[0.4.938],[[email protected]],,
12+
AC_INIT([LibreDWG],[0.5],[[email protected]],,
1313
[https://savannah.gnu.org/projects/libredwg/])
1414
AC_CONFIG_AUX_DIR([build-aux])
1515
dnl for older systems use this:

doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
DOXYFILE_ENCODING = UTF-8
88
PROJECT_NAME = "LibreDWG API"
9-
PROJECT_NUMBER = 0.4.938
9+
PROJECT_NUMBER = 0.5
1010
PROJECT_BRIEF = "LibreDWG API - The DWG Library"
1111
PROJECT_LOGO =
1212
OUTPUT_DIRECTORY = doc/

programs/dwg2SVG.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
2-
.TH DWG2SVG "1" "June 2018" "dwg2SVG 0.4.924" "User Commands"
2+
.TH DWG2SVG "1" "July 2018" "dwg2SVG 0.5" "User Commands"
33
.SH NAME
4-
dwg2SVG \- manual page for dwg2SVG 0.4.924
4+
dwg2SVG \- manual page for dwg2SVG 0.5
55
.SH SYNOPSIS
66
.B dwg2SVG
77
[\fI\,OPTION\/\fR]... \fI\,DWGFILE >SVGFILE\/\fR

programs/dwg2dxf.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
2-
.TH DWG2DXF "1" "June 2018" "dwg2dxf 0.4.924" "User Commands"
2+
.TH DWG2DXF "1" "July 2018" "dwg2dxf 0.5" "User Commands"
33
.SH NAME
4-
dwg2dxf \- manual page for dwg2dxf 0.4.924
4+
dwg2dxf \- manual page for dwg2dxf 0.5
55
.SH SYNOPSIS
66
.B dwg2dxf
77
[\fI\,OPTION\/\fR]... \fI\,DWGFILES\/\fR...

programs/dwg2ps.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
2-
.TH DWG2PS "1" "June 2018" "dwg2ps 0.4.924" "User Commands"
2+
.TH DWG2PS "1" "July 2018" "dwg2ps 0.5" "User Commands"
33
.SH NAME
4-
dwg2ps \- manual page for dwg2ps 0.4.924
4+
dwg2ps \- manual page for dwg2ps 0.5
55
.SH SYNOPSIS
66
.B dwg2ps
77
[\fI\,OPTION\/\fR]... \fI\,DWGFILE \/\fR[\fI\,PSFILE\/\fR]

0 commit comments

Comments
 (0)