Skip to content

Commit ed1a10d

Browse files
author
Pascal MALAISE
committed
A little bit more strict check when precision is above 0
Add MMR in test scenario Update years of copyright
1 parent 6e4f636 commit ed1a10d

20 files changed

+38
-28
lines changed

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ Original C library created by Pieter Geelen. Work on Java version
66
of the Mapcode library by Rijn Buve (original port by Matthew Lowden).
77
Port into Ada by Pascal Malaise.
88

9-
Copyright (C) 2014-2015 Stichting Mapcode Foundation (http://www.mapcode.com)
9+
Copyright (C) 2003-2018 Stichting Mapcode Foundation (http://www.mapcode.com)

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Release](https://img.shields.io/github/release/mapcode-foundation/mapcode-ada.svg?maxAge=3600)](https://github.com/mapcode-foundation/mapcode-ada/releases)
55

66

7-
**Copyright (C) 2014-2017 Stichting Mapcode Foundation (http://www.mapcode.com)**
7+
**Copyright (C) 2003-2018 Stichting Mapcode Foundation (http://www.mapcode.com)**
88

99
----
1010

@@ -302,6 +302,12 @@ Decode a mapcode with context.
302302

303303
# Version History
304304

305+
### 1.0.4
306+
307+
* A little bit more strict check when precision is above 0
308+
* Add MMR in test scenario
309+
* Update years of copyright
310+
305311
### 1.0.3
306312

307313
* Fix and improve accuracy

src/as_u.adb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- -----------------------------------------------------------------------------
2-
-- Copyright (C) 2014-2015 Stichting Mapcode Foundation (http://www.mapcode.com)
2+
-- Copyright (C) 2003-2018 Stichting Mapcode Foundation (http://www.mapcode.com)
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.

src/as_u.ads

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- -----------------------------------------------------------------------------
2-
-- Copyright (C) 2014-2015 Stichting Mapcode Foundation (http://www.mapcode.com)
2+
-- Copyright (C) 2003-2018 Stichting Mapcode Foundation (http://www.mapcode.com)
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.

src/bits.adb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- -----------------------------------------------------------------------------
2-
-- Copyright (C) 2014-2015 Stichting Mapcode Foundation (http://www.mapcode.com)
2+
-- Copyright (C) 2003-2018 Stichting Mapcode Foundation (http://www.mapcode.com)
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.

src/bits.ads

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- -----------------------------------------------------------------------------
2-
-- Copyright (C) 2014-2015 Stichting Mapcode Foundation (http://www.mapcode.com)
2+
-- Copyright (C) 2003-2018 Stichting Mapcode Foundation (http://www.mapcode.com)
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.

src/ctrynams.ads

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- -----------------------------------------------------------------------------
2-
-- Copyright (C) 2014-2015 Stichting Mapcode Foundation (http://www.mapcode.com)
2+
-- Copyright (C) 2003-2018 Stichting Mapcode Foundation (http://www.mapcode.com)
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.

src/ctrynams_short.ads

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- -----------------------------------------------------------------------------
2-
-- Copyright (C) 2014-2015 Stichting Mapcode Foundation (http://www.mapcode.com)
2+
-- Copyright (C) 2003-2018 Stichting Mapcode Foundation (http://www.mapcode.com)
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.

src/mapcodes.adb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- -----------------------------------------------------------------------------
2-
-- Copyright (C) 2014-2015 Stichting Mapcode Foundation (http://www.mapcode.com)
2+
-- Copyright (C) 2003-2018 Stichting Mapcode Foundation (http://www.mapcode.com)
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.

src/mapcodes.ads

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- -----------------------------------------------------------------------------
2-
-- Copyright (C) 2014-2015 Stichting Mapcode Foundation (http://www.mapcode.com)
2+
-- Copyright (C) 2003-2018 Stichting Mapcode Foundation (http://www.mapcode.com)
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@ package Mapcodes is
2020

2121
Mapcode_C_Version : constant String := "2.0.2";
2222
Mapcode_Data_Version : constant String := "2.3.0";
23-
Mapcode_Ada_Version : constant String := "1.0.3/Data"
23+
Mapcode_Ada_Version : constant String := "1.0.4/Data"
2424
& Mapcode_Data_Version;
2525

2626
-- Real type

0 commit comments

Comments
 (0)