Skip to content

Commit

Permalink
Release 3.0.0-3
Browse files Browse the repository at this point in the history
  • Loading branch information
robmadole committed Dec 9, 2020
1 parent 7889e19 commit 5e39c5f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

---

## [3.0.0-3](https://github.com/FortAwesome/vue-fontawesome/releases/tag/3.0.0-3) - 2020-12-09

### Fixed

* Allow for non-RC releases of Vue 3

---

## [3.0.0-2](https://github.com/FortAwesome/vue-fontawesome/releases/tag/3.0.0-2) - 2020-10-09

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion index.es.js
@@ -1,7 +1,7 @@
import { h, defineComponent } from 'vue';
import { parse, icon, config, text } from '@fortawesome/fontawesome-svg-core';

var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
var commonjsGlobal = typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};

function createCommonjsModule(fn, module) {
return module = { exports: {} }, fn(module, module.exports), module.exports;
Expand Down
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -4,7 +4,7 @@
(factory((global['vue-fontawesome'] = {}),global.vue,global.FontAwesome));
}(this, (function (exports,vue,fontawesomeSvgCore) { 'use strict';

var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
var commonjsGlobal = typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};

function createCommonjsModule(fn, module) {
return module = { exports: {} }, fn(module, module.exports), module.exports;
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "@fortawesome/vue-fontawesome",
"description": "Official Vue component for Font Awesome 5",
"version": "3.0.0-2",
"version": "3.0.0-3",
"main": "index.js",
"module": "index.es.js",
"jsnext:main": "index.es.js",
Expand Down Expand Up @@ -38,7 +38,7 @@
},
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": ">= 1.2.0 < 1.3",
"vue": "3.0.0-rc.6"
"vue": "3.x"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.0",
Expand Down

0 comments on commit 5e39c5f

Please sign in to comment.