Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
lukehorvat committed Aug 6, 2019
1 parent 90248eb commit 8300f7e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.0.0 (2019-08-06)

- Modernize and transpile Remixin's syntax.
- Stop including multiple build files in the npm package and version control.
- Replace the `__DEBUG__` global variable (that is used to toggle some debugging behavior) with a `debug` static property.

## 1.0.2 (2016-11-17)

- Optimize function calls by avoiding passing the `arguments` object around.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 SoundCloud
Copyright (c) 2019 SoundCloud

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remixin",
"version": "1.0.3",
"version": "2.0.0",
"description": "Aspect-oriented, mixin library",
"repository": "soundcloud/remixin",
"author": "SoundCloud",
Expand Down
5 changes: 0 additions & 5 deletions src/remixin.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
/*!
* Remixin v1.0.3
* (c) SoundCloud 2015
* Remixin may be freely distributed under the MIT license.
*/
import _ from 'underscore';

const SPECIAL_KEYS = ['before', 'after', 'around', 'requires', 'override', 'defaults', 'applyTo', 'requirePrototype', 'merge'];
Expand Down

0 comments on commit 8300f7e

Please sign in to comment.