Skip to content

Commit

Permalink
+ 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bbeaulant committed Apr 13, 2021
1 parent 4f99174 commit a4bde09
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CHANGELOG
This changelog references the relevant changes (bug and security fixes) done
in 2.x, 1.x and 0.x versions.

* 2.0.1 (WIP)
* 2.0.1 (2021-04-13)

* Global and Model preset are now sorted
* Added Ignore grain direction part attribute
Expand Down
Binary file modified dist/ladb_opencutlist-dev.rbz
Binary file not shown.
Binary file modified dist/ladb_opencutlist.rbz
Binary file not shown.
4 changes: 2 additions & 2 deletions dist/manifest-dev.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.0.0",
"build": "202103230940",
"version": "2.0.1",
"build": "202104111100",
"url": "https://www.lairdubois.fr/opencutlist/download"
}
4 changes: 2 additions & 2 deletions dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.0.0",
"build": "202103230940",
"version": "2.0.1",
"build": "202104111100",
"url": "https://www.lairdubois.fr/opencutlist/download"
}
2 changes: 1 addition & 1 deletion src/ladb_opencutlist.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module OpenCutList

# Create extension
ex = SketchupExtension.new('OpenCutList', 'ladb_opencutlist/ruby/main')
ex.version = "2.0.1-dev" ## /!\ Auto-generated line, do not edit ##
ex.version = "2.0.1" ## /!\ Auto-generated line, do not edit ##
ex.copyright = '2016-2020 - GNU GPLv3'
ex.creator = 'L\'Air du Bois - www.lairdubois.fr'

Expand Down
2 changes: 1 addition & 1 deletion src/ladb_opencutlist/js/constants.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// CONSTANTS
// ======================

var EXTENSION_BUILD = '202103241434'; // /!\ Auto-generated line, do not edit //
var EXTENSION_BUILD = '202104111100'; // /!\ Auto-generated line, do not edit //

// UI /////

Expand Down
4 changes: 2 additions & 2 deletions src/ladb_opencutlist/ruby/constants.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Ladb::OpenCutList

EXTENSION_NAME = 'OpenCutList'.freeze
EXTENSION_VERSION = '2.0.1-dev'.freeze
EXTENSION_BUILD = '202103241434'.freeze
EXTENSION_VERSION = '2.0.1'.freeze
EXTENSION_BUILD = '202104111100'.freeze

end

0 comments on commit a4bde09

Please sign in to comment.