From ef900e9c1993495b8a9d9c30cc6d3e226c610d9f Mon Sep 17 00:00:00 2001 From: chrisly42 Date: Fri, 30 Jul 2021 14:05:37 +0200 Subject: [PATCH] Added LICENSE.TXT, changed build.gradle to 2021.2 and added new build to plugin verification. Minor change to README.md regarding caching of coveralls badge. --- LICENSE.TXT | 13 +++++++++++++ README.md | 6 +++++- build.gradle | 9 +++++---- 3 files changed, 23 insertions(+), 5 deletions(-) create mode 100644 LICENSE.TXT diff --git a/LICENSE.TXT b/LICENSE.TXT new file mode 100644 index 0000000..3ecb5ee --- /dev/null +++ b/LICENSE.TXT @@ -0,0 +1,13 @@ +Copyright 2021 Chris Hodges + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file diff --git a/README.md b/README.md index c82647e..e150698 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# MC68000 Assembly Language Plugin [![Build Status](https://travis-ci.com/chrisly42/mc68000-asm-plugin.svg?branch=main)](https://travis-ci.com/chrisly42/mc68000-asm-plugin) [![Coverage Status](https://coveralls.io/repos/github/chrisly42/mc68000-asm-plugin/badge.svg?branch=main)](https://coveralls.io/github/chrisly42/mc68000-asm-plugin?branch=main) +# MC68000 Assembly Language Plugin [![Build Status](https://travis-ci.com/chrisly42/mc68000-asm-plugin.svg?branch=main)](https://travis-ci.com/chrisly42/mc68000-asm-plugin) [![Coverage Status](https://coveralls.io/repos/github/chrisly42/mc68000-asm-plugin/badge.svg?branch=main&kill_cache=1)](https://coveralls.io/github/chrisly42/mc68000-asm-plugin?branch=main) _MC68000 Assembly Language Plugin_ is plugin for Jetbrains IDEs (CLion, IntelliJ, etc.). @@ -68,6 +68,10 @@ make it work with JUnit 5. Feel free to use the code (in package ```de.platon42. ## Changelog +### V0.4 (unreleased) + +- + ### V0.3 (28-Jul-21) - Enhancement: Macro contents are no longer parsed, added syntax highlighting options for macros. diff --git a/build.gradle b/build.gradle index 9d6dce0..0cc7231 100644 --- a/build.gradle +++ b/build.gradle @@ -21,7 +21,7 @@ repositories { */ dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" + implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8' testImplementation "org.assertj:assertj-core:3.20.2" testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.0-M1' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.0-M1' @@ -39,18 +39,19 @@ compileTestKotlin { } intellij { - setVersion("2021.1.3") // LATEST-EAP-SNAPSHOT + setVersion("2021.2") // LATEST-EAP-SNAPSHOT setUpdateSinceUntilBuild(false) // setPlugins(["com.intellij.java"]) } runPluginVerifier { - ideVersions = ["IC-193.5662.53", "IC-211.7628.21", // 2019.3.1 - 2021.1.3 + ideVersions = ["IC-193.5662.53", "IC-212.4746.92", // 2019.3.1 - 2021.2 "CL-193.5233.103", "CL-193.7288.25", // 2019.3 "CL-201.6668.126", "CL-201.8743.17", // 2020.1 "CL-202.6397.106", "CL-202.8194.17", // 2020.2 "CL-203.5981.166", "CL-203.8084.11", // 2020.3 - "CL-211.6693.114", "CL-211.7628.27"] // 2021.1 + "CL-211.6693.114", "CL-211.7628.27", // 2021.1 + "CL-212.4746.93"] // 2021.2 downloadDir = System.getProperty("user.home") + "/.gradle/caches/modules-2/files-2.1/com.jetbrains.intellij.idea" }