Skip to content

Commit

Permalink
Merge branch 'release/v3.1.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
janschoenherr committed May 17, 2019
2 parents 3bc8b44 + 05ae0ba commit 002cebc
Show file tree
Hide file tree
Showing 39 changed files with 810 additions and 357 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Expand Up @@ -15,7 +15,7 @@ Also try to search for your issue. It may have already been answered or even fix
<!-- BUG REPORT TEMPLATE -->
### UIkit version
<!-- Check if the issue is reproducible with the latest stable version. -->
3.1.4
3.1.5

### Browser

Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,21 @@
# Changelog

## 3.1.5 (May 17, 2019)

### Added

- Add link toggle to Link component
- Add breakpoint classes for margin auto and remove
- Add Etsy icon

### Fixed

- Fix Dropbar closing unexpectedly
- Fix Sortable `click` event prevention in Firefox
- Fix JS error in Offcanvas component on touch devices
- Icon components no longer have a primary option
- Icon/Svg components no longer reset initially

## 3.1.4 (April 24, 2019)

### Fixed
Expand Down
8 changes: 7 additions & 1 deletion build/publishDev.js
@@ -1,11 +1,17 @@
const {inc} = require('semver');
const {resolve} = require('path');
const {execSync} = require('child_process');
const argv = require('minimist')(process.argv.slice(2));

argv._.forEach(arg => {
const tokens = arg.split('=');
argv[tokens[0]] = tokens[1] || true;
});

// default exec options
const options = {cwd: resolve(`${__dirname}/..`), encoding: 'utf8'};

if (isDevCommit()) {
if (isDevCommit() || argv.f || argv.force) {

// increase version patch number
const version = inc(require('../package.json').version, 'patch');
Expand Down

0 comments on commit 002cebc

Please sign in to comment.