Skip to content

Commit 2251977

Browse files
committed
get read for release
1 parent bbde299 commit 2251977

6 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
**v3.4.2** Fix native library bug on windows (thanks to Jay Scott). Add minim library examples
2+
13
**v3.4.1** Update to JRuby-9.2.9.0
24

35
**v3.4.0** Experimental refactoring of ThinkDifferent, and some other processing classes

lib/propane/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module Propane
3-
VERSION = '3.4.1'
3+
VERSION = '3.4.2'
44
end

pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project 'propane', 'https://github.com/monkstone/propane' do
22

33
model_version '4.0.0'
4-
id 'propane:propane:3.4.1'
4+
id 'propane:propane:3.4.2'
55
packaging 'jar'
66

77
description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
1111
<modelVersion>4.0.0</modelVersion>
1212
<groupId>propane</groupId>
1313
<artifactId>propane</artifactId>
14-
<version>3.4.1</version>
14+
<version>3.4.2</version>
1515
<name>propane</name>
1616
<description>An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.</description>
1717
<url>https://github.com/monkstone/propane</url>

propane.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
1515
gem.summary = %q{ruby implementation of processing-4.0 on MacOS, linux and windows (64bit only)}
1616
gem.homepage = 'https://ruby-processing.github.io/propane/'
1717
gem.files = `git ls-files`.split($/)
18-
gem.files << 'lib/propane-3.4.1.jar'
18+
gem.files << "lib/propane-#{Propane::VERSION}.jar"
1919
gem.files << 'lib/gluegen-rt.jar'
2020
gem.files << 'lib/jogl-all.jar'
2121
gem.files << 'lib/gluegen-rt-natives-linux-amd64.jar'

vendors/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SOUND_VERSION = 'v1.3.2' # version 1.3.2
1010
GLVIDEO = 'processing-glvideo.zip'
1111
VIDEO = 'video-2.0-beta4.zip'
1212
VIDEO_VERSION = 'r6-v2.0-beta4'
13-
EXAMPLES = '2.6'.freeze
13+
EXAMPLES = '2.7'.freeze
1414
HOME_DIR = ENV['HOME']
1515
MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
1616

0 commit comments

Comments
 (0)