Skip to content

Commit 6f100e7

Browse files
committed
Copyright year
1 parent 92d3601 commit 6f100e7

21 files changed

+22
-20
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
**v1.6.4** Amended vendors/Rakefile
2+
13
**v1.6.3** Update to jruby-complete-9.2.5.0.
24

35
**v1.6.2** Update to jruby-complete-9.2.4.0.

lib/jruby_art/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22
# A wrapper for version
33
module JRubyArt
4-
VERSION = '1.6.3'.freeze
4+
VERSION = '1.6.4'.freeze
55
end

library/slider/slider.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22
# Here's a little library for quickly hooking up in sketch sliders.
3-
# Copyright (c) 2016-18 Martin Prout.
3+
# Copyright (c) 2016-19 Martin Prout.
44

55
java_import 'monkstone.slider.CustomHorizontalSlider'
66
java_import 'monkstone.slider.CustomVerticalSlider'

src/monkstone/ColorUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* in their sketches. Includes a method to efficiently convert an cols of web
44
* strings to an cols of color int, and another to convert an cols of p5 color
55
* (int) to a string that can be used in ruby code (to generate web color cols).
6-
* Copyright (c) 2015-18 Martin Prout.
6+
* Copyright (c) 2015-19 Martin Prout.
77
* This utility is free software; you can redistribute it and/or modify
88
* it under the terms of the GNU Lesser General Public License as published by
99
* the Free Software Foundation; either version 2.1 of the License, or (at

src/monkstone/JRLibrary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* The purpose of this class is to load the MathTool etc. into JRuby runtime
3-
* Copyright (c) 2015-18 Martin Prout. This code is free software; you can
3+
* Copyright (c) 2015-19 Martin Prout. This code is free software; you can
44
* redistribute it and/or modify it under the terms of the GNU Lesser General
55
* Public License as published by the Free Software Foundation; either version
66
* 2.1 of the License, or (at your option) any later version.

src/monkstone/MathToolModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* The purpose of this tool is to allow JRubyArt users to use an alternative
33
* to processing.org map, lerp and norm methods in their sketches and to implement
44
* JRubyArt convenenience method grid(width, height, stepW, stepH) { |x, y| do stuff }
5-
* Copyright (c) 2015-18 Martin Prout. This tool is free software; you can
5+
* Copyright (c) 2015-19 Martin Prout. This tool is free software; you can
66
* redistribute it and/or modify it under the terms of the GNU Lesser General
77
* Public License as published by the Free Software Foundation; either version
88
* 2.1 of the License, or (at your option) any later version.

src/monkstone/arcball/Arcball.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015-18 Martin Prout
2+
* Copyright (c) 2015-19 Martin Prout
33
*
44
* This library is free software; you can redistribute it and/or
55
* modify it under the terms of the GNU Lesser General Public

src/monkstone/filechooser/Chooser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016-18 Martin Prout
2+
* Copyright (c) 2016-19 Martin Prout
33
*
44
* This library is free software; you can redistribute it and/or
55
* modify it under the terms of the GNU Lesser General Public

src/monkstone/slider/CustomHorizontalSlider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016-18 Martin Prout
2+
* Copyright (c) 2016-19 Martin Prout
33
*
44
* This library is free software; you can redistribute it and/or
55
* modify it under the terms of the GNU Lesser General Public

src/monkstone/slider/CustomVerticalSlider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016-18 Martin Prout
2+
* Copyright (c) 2016-19 Martin Prout
33
*
44
* This library is free software; you can redistribute it and/or
55
* modify it under the terms of the GNU Lesser General Public

0 commit comments

Comments
 (0)